Fecha de la ultima revisión
## [1] "2021-02-01"
## [1] "/Users/raymondtremblay/Google Drive/GitHub_Google_Drive/GitHub/Ciencia_de_Datos_con_R"
El tema proviene de los siguientes sitios.
English: https://r4ds.had.co.nz/workflow-basics.html
Español: https://r4ds-en-espaniol.netlify.app/flujo-de-trabajo-conocimientos-básicos.html
2+2## [1] 4
(23+3+3)^2+2## [1] 843
sin(pi/3)## [1] 0.8660254
log(100)## [1] 4.60517
log2(100)## [1] 6.643856
x<- 4
x## [1] 4
y=3
y## [1] 3
x/y## [1] 1.333333
edad_nd=base::seq(101, 110)
edad_nd## [1] 101 102 103 104 105 106 107 108 109 110
edad_uprh=c(11:20)
edad_uprh## [1] 11 12 13 14 15 16 17 18 19 20
edad=data.frame(edad_nd, edad_uprh)
edad| edad_nd | edad_uprh |
|---|---|
| 101 | 11 |
| 102 | 12 |
| 103 | 13 |
| 104 | 14 |
| 105 | 15 |
| 106 | 16 |
| 107 | 17 |
| 108 | 18 |
| 109 | 19 |
| 110 | 20 |
library(tidyverse)
library(datos)
ggplot(data=millas) +
geom_point(mapping = aes(x = cilindrada, y = autopista))
#filter(millas, cilindros = 8)
#filter(diamante, quilate > 3)
length(edad_uprh)## [1] 10
Hacer los ejercicios en la sección 4.4 del libro en español
Cual son los errores