-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path6-funciones-en-R.R
99 lines (65 loc) · 1.91 KB
/
6-funciones-en-R.R
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
# UNIVERSIDAD NACIONAL AUTÓNOMA DE MÉXICO
# Facultad de Economía
# Matemáticas I 2021-1
# Profesor: Cesar Hernández
# PRÁCTICA 6: FUNCIONES EN R
# Borrar objetos y variables
rm(list=ls())
# USANDO LA AYUDA DE R
# Ejemplo: para saber cuáles son las palabras reservadas
# Si no se conoce la función
help.search( "reserved")
# Si se conoce la función y el paquete está activo
?reserved
# También se puede usar
help(reserved)
# INSTLACIÓN DE PAQUETES (se requiere conexión a internet)
# Si el paquete no ha sido instalado, la instalación se puede hacer como sigue:
# install.packages("nombre")
# Para activar un paquete
# library("nombre")
# Ejemplo:
install.packages("ggplot2")
library(ggplot2)
# Para ver todas las funciones en este paquete
lsf.str("package:ggplot2")
# Haciendo funciones con R
# Si a > 0 imprimir "positivo"
a<-3
if (a>0){
print("positivo")
}
# Si b > 0 imprimir "positivo", de otro modo, imprimir "negativo"
b<-(-5)
if (b>0){
print("positivo")
} else {
print("negativo")
}
# Si c > 0 imprimir "positivo", si c < 0 imprimir "negativo",
#de otro modo, imprimir "cero"
c<-0
if (c>0){
print("positivo")
} else if (c<0) {
print("negativo")
} else {
print("cero")
}
# Se puede escribir en una sola sentencia
d<-0
if (d>0) print("positivo") else if (d<0) print("negativo") else print("cero")
# Clasificando y filtrando datos
iris
names(iris)
length(iris)
summary(iris)
length(iris$Sepal.Length)
select(iris,Sepal.Length)
select(iris,-Sepal.Length)
filter(iris,Species=="setosa")
mean(iris$Sepal.Width)
filter(iris,Sepal.Width>(mean(iris$Sepal.Width)))
filter(iris,Sepal.Width>(mean(iris$Sepal.Width))&Species=="setosa")
filter(iris,Sepal.Width>(mean(iris$Sepal.Width)),Species=="setosa",Sepal.Length>5)
iris%>%filter(Sepal.Width>(mean(iris$Sepal.Width)),Species=="setosa",Sepal.Length>5)