Quotes help make search much faster. Example: "Practice Makes Perfect"

Wednesday, September 4, 2019

Codecademy Learn R Calling a Function 10/12


#Sample Solution
---
title: "Introduction to R Syntax"
output: html_notebook
---
```{r}
data <- c(120,22,22,31,15,120)
unique_vals <- unique(data)
print(unique_vals)
solution <- sqrt(49)
print(solution)
round_down <- floor(3.14)
round_up <- ceiling(3.14)
print(round_down)
print(round_up)
```

No comments:

Post a Comment


This is an example of scrolling text using Javascript.

Popular Posts