This is an R Markdown Notebook. When you execute code within the notebook, the results appear beneath the code.

Try executing this chunk by clicking the Run button within the chunk or by placing your cursor inside it and pressing Ctrl+Shift+Enter.

Heading 1

Heading 2

Heading 3

Heading 4

Normal text # This is a plot of Car Dataset

this is font size 1
this is font size 1
this is font size 5

bold
italic

\(A = \pi*r^{2}\)

# This is a code to plot 2 variable in car dataset 
plot(cars)

This is my code

I created this code in the first class will continue to update in the next class

print("Hello World")
## [1] "Hello World"

##variable

a=5
b=10
c=a+b
c
## [1] 15
This_is_a_variable=100
This_is_a_variable
## [1] 100

Add a new chunk by clicking the Insert Chunk button on the toolbar or by pressing Ctrl+Alt+I. When you save the notebook, an HTML file containing the code and output will be saved alongside it (click the Preview button or press Ctrl+Shift+K to preview the HTML file).

The preview shows you a rendered HTML copy of the contents of the editor. Consequently, unlike Knit, Preview does not run any R code chunks. Instead, the output of the chunk when it was last run in the editor is displayed.