For Markdown, use asteriks to indicate italic text.

Double line return for a new chunk of text like this. if not is like this.

You could always try this:

Name
University of Vermont

Head line are made with hash marks

Two head marks make it smaller

Smaller

So one…

Bold face this way

Offset quote which embed and looks really nice when you have extended material that you would like to see.

back to plain text

to find more useful code go to help>markdown quick reference

List
Item 1
Item 2
- Spacing incidents

Set up a link with text

also footnotes1

We can create a fencing for code:

fencing serts boundaries and everthin inside the fencing *is shown as literal text* without rendering

The Rmarkdown code help us Latex code becouse is excelent for any mathematical lenguaje.

to enter use a double $ signe

\[ a+b=c \]

There is a second way to enter to latex lenguaje: \(a+b=c\) like this
Now the material is ibedeed in my sentence.

A couple of examples in LateX:

The Curly brackets set that the particular code before apply to everything between it:

\[ H_0 = Z_{a + b} \]

we can also do superscripts in LaTeX

\[ A = cA^z\]

\[S=cA^z-1 + Z_{2 + x}\] ## Fraction

\[\alpha = \frac{\beta}{\delta + \gamma_x}\]

We can do sumatorias.

\[z - \sum_{i=1}^X{K}\]

What happens is a command is a symbols that we actually want to use? Well u use a backslash to scape the code.

\[\backslash \alpha \le b \backslash\] To introduce plain text we can use a M box.

\[P(\mbox{Ocurrence Of Species A}) = Z\]

You can put things in line with the text.

But remember this does not have to be as an equation. We could also embed them in the sentnces with a single dollar sign. \(\pi + 3\)

We can also use markdone fencing in file with a single backtick like this: pi + 3 but remmeber

3 backtick creats an isolated chunk of text

We can even execute R code inside of markdown. With r between backtick. Everithing after it is gonna be interpreted as R code 6.1415927. In this case pi is store as the number 3.14…. and now is the results of the calculation explain before.

This come that we can do R code. Real chunks of R code. If you do 3 back ticks and {R} well creat a R code that will run as a code.

Pred <- seq(1, 10) #Make a vercotr of integer fron 1 to 10. 
Res <- runif(10)   #generate 10 draws from a randon uniform (0,1) distristribution

#print the random numbers
print(Res)
##  [1] 0.70579207 0.87529793 0.63094555 0.83953431 0.55365465 0.55981007
##  [7] 0.02469324 0.21308133 0.05397190 0.85804053

As you see above, It print the code, run it and print the result. it and printed 10 vrandom number between 0 and 1. Also can print the actual final graph, or whatever you want that R does.

we can ad an instruction to print the code, but do not print the output.

Pred <- seq(1, 10) #Make a vercotr of integer fron 1 to 10. 
Res <- runif(10)   #generate 10 draws from a randon uniform (0,1) distristribution

#print the random numbers
print(Res)

This other will print the result but will not show the code

##  [1] 0.643410069 0.326695275 0.473108007 0.319195419 0.912110867 0.948200778
##  [7] 0.081718273 0.855659491 0.001004579 0.019677459
Pred <- seq(1, 10) #Make a vercotr of integer fron 1 to 10. 
Res <- runif(10)   #generate 10 draws from a randon uniform (0,1) distristribution

#print the random numbers
print(Res)
##  [1] 0.22910541 0.56051119 0.80585149 0.35309173 0.42871673 0.32180576
##  [7] 0.50968857 0.06008637 0.87212170 0.81114220

##Speaking a little bit about and R script:

runs code by code. and what is the difference with


  1. whatever foot note↩︎