Está en la página 1de 12

incendios australia

Sayuri petro y Yerlis gonzales

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))
CAJA
boxplot(datos2)
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

Varianza
varianza <- var(datos3); varianza

## [1] 483.4922

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

## [1] 21.98846

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

## [1] 6.584905

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

tabla1 <- table.freq(TDA);tabla1

## Lower Upper Main Frequency Percentage CF CPF


## 1 0.3200000 0.3428571 0.3314286 42369 4.4 42369 4.4
## 2 0.3428571 0.3657143 0.3542857 23918 2.5 66287 6.9
## 3 0.3657143 0.3885714 0.3771429 62693 6.6 128980 13.5
## 4 0.3885714 0.4114286 0.4000000 264087 27.6 393067 41.1
## 5 0.4114286 0.4342857 0.4228571 88241 9.2 481308 50.3
## 6 0.4342857 0.4571429 0.4457143 75092 7.9 556400 58.2
## 7 0.4571429 0.4800000 0.4685714 84236 8.8 640636 67.0
## 8 0.4800000 0.5028571 0.4914286 51165 5.4 691801 72.3
## 9 0.5028571 0.5257143 0.5142857 54173 5.7 745974 78.0
## 10 0.5257143 0.5485714 0.5371429 50598 5.3 796572 83.3
## 11 0.5485714 0.5714286 0.5600000 56976 6.0 853548 89.3
## 12 0.5714286 0.5942857 0.5828571 20162 2.1 873710 91.4
## 13 0.5942857 0.6171429 0.6057143 19426 2.0 893136 93.4
## 14 0.6171429 0.6400000 0.6285714 22210 2.3 915346 95.7
## 15 0.6400000 0.6628571 0.6514286 5978 0.6 921324 96.3
## 16 0.6628571 0.6857143 0.6742857 7036 0.7 928360 97.1
## 17 0.6857143 0.7085714 0.6971429 5957 0.6 934317 97.7
## 18 0.7085714 0.7314286 0.7200000 9058 0.9 943375 98.7
## 19 0.7314286 0.7542857 0.7428571 4885 0.5 948260 99.2
## 20 0.7542857 0.7771429 0.7657143 4140 0.4 952400 99.6
## 21 0.7771429 0.8000000 0.7885714 3857 0.4 956257 100.0

media
media <- mean(datos4);media

## [1] 0.4603976

varianza
varianza <- var(datos4); varianza

## [1] 0.008066076

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

## [1] 0.08981134

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

## [1] 19.50734

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

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

tabla1 <- table.freq(TDA);tabla1

## Lower Upper Main Frequency Percentage CF CPF


## 1 0.36 0.38 0.37 294957 30.8 294957 30.8
## 2 0.38 0.40 0.39 77314 8.1 372271 38.9
## 3 0.40 0.42 0.41 72462 7.6 444733 46.5
## 4 0.42 0.44 0.43 53389 5.6 498122 52.1
## 5 0.44 0.46 0.45 46526 4.9 544648 57.0
## 6 0.46 0.48 0.47 33182 3.5 577830 60.4
## 7 0.48 0.50 0.49 36369 3.8 614199 64.2
## 8 0.50 0.52 0.51 27145 2.8 641344 67.1
## 9 0.52 0.54 0.53 29085 3.0 670429 70.1
## 10 0.54 0.56 0.55 42088 4.4 712517 74.5
## 11 0.56 0.58 0.57 35038 3.7 747555 78.2
## 12 0.58 0.60 0.59 32714 3.4 780269 81.6
## 13 0.60 0.62 0.61 26920 2.8 807189 84.4
## 14 0.62 0.64 0.63 26003 2.7 833192 87.1
## 15 0.64 0.66 0.65 23218 2.4 856410 89.6
## 16 0.66 0.68 0.67 20227 2.1 876637 91.7
## 17 0.68 0.70 0.69 21049 2.2 897686 93.9
## 18 0.70 0.72 0.71 17660 1.8 915346 95.7
## 19 0.72 0.74 0.73 15626 1.6 930972 97.4
## 20 0.74 0.76 0.75 15204 1.6 946176 98.9
## 21 0.76 0.78 0.77 10081 1.1 956257 100.0

media
media <- mean(datos5);media

## [1] 0.480464

Varianza
varianza <- var(datos5); varianza

## [1] 0.01411147

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

## [1] 0.1187917

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

## [1] 24.72437

##graficos columna 5
HISTOGRAMA
hist(datos5,breaks = seq(min(datos5), max(datos5),
by= (max(datos5) - min(datos5))/I), col = rainbow(15))
CAJA
boxplot(datos5)

También podría gustarte