Está en la página 1de 5

incendios australia

Sayuri y Yerlis

12/3/2020

columna 1
#para la columna N°1
#TDA
I <- round(1+3.33*log10(length(datos1)),0)
TDA <-hist(datos1,breaks = seq(min(datos1), max(datos1),
by=(max(datos1) - min(datos1))/I), plot = F)

tabla1 <- table.freq(TDA);tabla1

## Lower Upper Main Frequency Percentage CF CPF


## 1 -43.21232 -41.60204 -42.40718 2153 0.2 2153 0.2
## 2 -41.60204 -39.99177 -40.79690 1604 0.2 3757 0.4
## 3 -39.99177 -38.38149 -39.18663 268 0.0 4025 0.4
## 4 -38.38149 -36.77121 -37.57635 76250 8.0 80275 8.4
## 5 -36.77121 -35.16093 -35.96607 72841 7.6 153116 16.0
## 6 -35.16093 -33.55066 -34.35580 53416 5.6 206532 21.6
## 7 -33.55066 -31.94038 -32.74552 140339 14.7 346871 36.3
## 8 -31.94038 -30.33010 -31.13524 137803 14.4 484674 50.7
## 9 -30.33010 -28.71983 -29.52496 97814 10.2 582488 60.9
## 10 -28.71983 -27.10955 -27.91469 48112 5.0 630600 65.9
## 11 -27.10955 -25.49927 -26.30441 17736 1.9 648336 67.8
## 12 -25.49927 -23.88899 -24.69413 29232 3.1 677568 70.9
## 13 -23.88899 -22.27872 -23.08386 13478 1.4 691046 72.3
## 14 -22.27872 -20.66844 -21.47358 12165 1.3 703211 73.5
## 15 -20.66844 -19.05816 -19.86330 14858 1.6 718069 75.1
## 16 -19.05816 -17.44789 -18.25302 34161 3.6 752230 78.7
## 17 -17.44789 -15.83761 -16.64275 51958 5.4 804188 84.1
## 18 -15.83761 -14.22733 -15.03247 72969 7.6 877157 91.7
## 19 -14.22733 -12.61705 -13.42219 46909 4.9 924066 96.6
## 20 -12.61705 -11.00678 -11.81192 31742 3.3 955808 100.0
## 21 -11.00678 -9.39650 -10.20164 449 0.0 956257 100.0

media
media <- mean(datos1);media

## [1] -27.46557

Varianza
varianza <- var(datos1); varianza
## [1] 64.13163

Desviación Estandar
des_estan <-sd(datos1); des_estan

## [1] 8.008223

coeficiente de correlacion
cv <- ((des_estan/media)*100); cv

## [1] -29.15732

##graficos columna 1
HISTOGRAMA
hist(datos1,breaks = seq(min(datos1), max(datos1),
by= (max(datos1) - min(datos1))/I), col = rainbow(15))

CAJA
boxplot(datos1)
columna 2
#para la columna N°2
#TDA
I <- round(1+3.33*log10(length(datos2)),0)
TDA <-hist(datos2,breaks = seq(min(datos2), max(datos2),
by=(max(datos2) - min(datos2))/I), plot = F)

tabla1 <- table.freq(TDA);tabla1

## Lower Upper Main Frequency Percentage CF CPF


## 1 113.4470 115.3520 114.3995 650 0.1 650 0.1
## 2 115.3520 117.2570 116.3045 8361 0.9 9011 0.9
## 3 117.2570 119.1620 118.2095 7895 0.8 16906 1.8
## 4 119.1620 121.0670 120.1145 13781 1.4 30687 3.2
## 5 121.0670 122.9721 122.0195 31864 3.3 62551 6.5
## 6 122.9721 124.8771 123.9246 59702 6.2 122253 12.8
## 7 124.8771 126.7821 125.8296 22303 2.3 144556 15.1
## 8 126.7821 128.6871 127.7346 37123 3.9 181679 19.0
## 9 128.6871 130.5921 129.6396 30843 3.2 212522 22.2
## 10 130.5921 132.4971 131.5446 28154 2.9 240676 25.2
## 11 132.4971 134.4021 133.4496 23356 2.4 264032 27.6
## 12 134.4021 136.3071 135.3546 25495 2.7 289527 30.3
## 13 136.3071 138.2121 137.2596 22536 2.4 312063 32.6
## 14 138.2121 140.1171 139.1646 6467 0.7 318530 33.3
## 15 140.1171 142.0221 141.0696 10262 1.1 328792 34.4
## 16 142.0221 143.9271 142.9746 55523 5.8 384315 40.2
## 17 143.9271 145.8321 144.8796 40956 4.3 425271 44.5
## 18 145.8321 147.7372 146.7847 32450 3.4 457721 47.9
## 19 147.7372 149.6422 148.6897 103916 10.9 561637 58.7
## 20 149.6422 151.5472 150.5947 204040 21.3 765677 80.1
## 21 151.5472 153.4522 152.4997 190580 19.9 956257 100.0

media
media <- mean(datos2);media

## [1] 142.1918

varianza
varianza <- var(datos2); varianza

## [1] 120.693

Desviación Estandar
des_estan <-sd(datos2); des_estan

## [1] 10.98604

coeficiente de correlacion
cv <- ((des_estan/media)*100); cv

## [1] 7.726209

##graficos columna 2
HISTOGRAMA
hist(datos2,breaks = seq(min(datos2), max(datos2),
by= (max(datos2) - min(datos2))/I), col = rainbow(15))
columna 3
#para la columna N°3
#TDA
I <- round(1+3.33*log10(length(datos3)),0)
TDA <-hist(datos3,breaks = seq(min(datos3), max(datos3),
by=(max(datos3) - min(datos3))/I), plot = F)

media
media <- mean(datos3);media

## [1] 333.9221

También podría gustarte