Skip to content

Commit

Permalink
Create code_output_demo.Rmd
Browse files Browse the repository at this point in the history
  • Loading branch information
qualiaMachine authored Jan 25, 2024
1 parent 8849d6a commit 8d706f0
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions episodes/code_output_demo.Rmd
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@

---
title: "R Markdown with Python"
output: html_document
---

You can include Python code in R Markdown documents. R Markdown is a versatile document format that supports multiple programming languages. To include Python code, you can use code chunks with the {python} option.

Here's an example of how you can include Python code in an R Markdown document:

## Python Code in R Markdown

```{python}
# This is a Python code chunk
print("Hello from Python!")

0 comments on commit 8d706f0

Please sign in to comment.