Project title

INFO 523 - Spring 2023 - Project 1

Author names

Using Quarto for presentations

Quarto

  • The presentation is created using the Quarto CLI

  • ## sets the start of a new slide

Layouts

You can use plain text

  • or bullet points1

or in two columns

  • like

  • this

Code

                            OLS Regression Results                            
==============================================================================
Dep. Variable:                    mpg   R-squared:                       0.073
Model:                            OLS   Adj. R-squared:                  0.070
Method:                 Least Squares   F-statistic:                     30.59
Date:                Tue, 05 Dec 2023   Prob (F-statistic):           5.84e-08
Time:                        15:17:43   Log-Likelihood:                -1346.4
No. Observations:                 392   AIC:                             2697.
Df Residuals:                     390   BIC:                             2705.
Df Model:                           1                                         
Covariance Type:            nonrobust                                         
==============================================================================
                 coef    std err          t      P>|t|      [0.025      0.975]
------------------------------------------------------------------------------
const         35.8015      2.266     15.800      0.000      31.347      40.257
speed       -354.7055     64.129     -5.531      0.000    -480.788    -228.623
==============================================================================
Omnibus:                       27.687   Durbin-Watson:                   0.589
Prob(Omnibus):                  0.000   Jarque-Bera (JB):               18.976
Skew:                           0.420   Prob(JB):                     7.57e-05
Kurtosis:                       2.323   Cond. No.                         169.
==============================================================================

Notes:
[1] Standard Errors assume that the covariance matrix of the errors is correctly specified.

Plots

Plot and text

  • Some text

  • goes here

A new section…

Tables

If you want to generate a table, make sure it is in the HTML format (instead of Markdown or other formats), e.g.,

species island bill_length_mm bill_depth_mm flipper_length_mm body_mass_g sex
0 Adelie Torgersen 39.1 18.7 181.0 3750.0 Male
1 Adelie Torgersen 39.5 17.4 186.0 3800.0 Female
2 Adelie Torgersen 40.3 18.0 195.0 3250.0 Female
4 Adelie Torgersen 36.7 19.3 193.0 3450.0 Female
5 Adelie Torgersen 39.3 20.6 190.0 3650.0 Male

Images

Image credit: Danielle Navarro, Percolate.

Math Expressions

You can write LaTeX math expressions inside a pair of dollar signs, e.g. $\alpha+\beta$ renders \(\alpha + \beta\). You can use the display style with double dollar signs:

$$\bar{X}=\frac{1}{n}\sum_{i=1}^nX_i$$

\[ \bar{X}=\frac{1}{n}\sum_{i=1}^nX_i \]

Limitations:

  1. The source code of a LaTeX math expression must be in one line, unless it is inside a pair of double dollar signs, in which case the starting $$ must appear in the very beginning of a line, followed immediately by a non-space character, and the ending $$ must be at the end of a line, led by a non-space character;

  2. There should not be spaces after the opening $ or before the closing $.

Wrap up

Feeling adventurous?

  • You are welcomed to use the default styling of the slides. In fact, that’s what I expect majority of you will do. You will differentiate yourself with the content of your presentation.

  • But some of you might want to play around with slide styling. Some solutions for this can be found at https://quarto.org/docs/presentations/revealjs.