Untitled

Author

Bryan Payes

Published

February 4, 2025

Big one

Second

third


Quarto

Quarto enables you to weave together content and executable code into a finished document. To learn more about Quarto see https://quarto.org.

Running Code

When you click the Render button a document will be generated that includes both content and the output of embedded code. You can embed code like this:

summary(cars)
     speed           dist       
 Min.   : 4.0   Min.   :  2.00  
 1st Qu.:12.0   1st Qu.: 26.00  
 Median :15.0   Median : 36.00  
 Mean   :15.4   Mean   : 42.98  
 3rd Qu.:19.0   3rd Qu.: 56.00  
 Max.   :25.0   Max.   :120.00  

You can add options to executable code like this

This is a inline r code:9

[1] 4

*** (python) #| warning: false import pandas as pd

df = pd.Dataframe({‘Col1’:[1, 2], ’Col2: [3, 4]}) df The echo: false option disables the printing of code (only output is displayed).