Uploaded by Keyla Guerrero Ruiz

Noemi Betzabe Villavicencio Higuera

advertisement
[Workspace loaded from ~/integración curricular/analisis exploratorio de dato (EDA)/.RData]
> 2+2
[1] 4
Warning message:
R graphics engine version 16 is not supported by this version of RStudio. The Plots tab will be
disabled until a newer version of RStudio is installed.
> 10-5
[1] 5
> 10-5
[1] 5
> 10-5
[1] 5
> 10-5
[1] 5
> 10-5
[1] 5
> library(readxl)
> EJERCICIO_EN_CLASES <- read_excel("~/BET/EJERCICIO EN CLASES.xlsx")
> View(EJERCICIO_EN_CLASES)
> MEDIA_SUELDO<-mean(EJERCICIO_EN_CLASES$SUELDO)
> MEDIA_SUELDO
[1] 293.5
> sd_SUELDO
Error: object 'sd_SUELDO' not found
> sd_SUELDO
Error: object 'sd_SUELDO' not found
> SD_SUELDO
Error: object 'SD_SUELDO' not found
> SD_SUELDO<-sd(EJERCICIO_EN_CLASES$SUELDO)
> SD_SUELDO
[1] 136.8024
> Sumary(EJERCICIO_EN_CLASES)
Error in Sumary(EJERCICIO_EN_CLASES) : could not find function "Sumary"
> Summary(EJERCICIO_EN_CLASES)
Error in (function (classes, fdef, mtable) :
unable to find an inherited method for function ‘Summary’ for signature ‘"tbl_df"’
> summary(EJERCICIO_EN_CLASES)
SUELDO
MEDIA
MODA
MEDIANA
V.MINIMO
V.MAXIMO
Min. :121.0 Min. :293.5 Min. :234 Min. :245.5 Min. :121 Min. :564
1st Qu.:215.0 1st Qu.:293.5 1st Qu.:234 1st Qu.:245.5 1st Qu.:121 1st Qu.:564
Median :245.5 Median :293.5 Median :234 Median :245.5 Median :121 Median :564
Mean :293.5 Mean :293.5 Mean :234 Mean :245.5 Mean :121 Mean :564
3rd Qu.:369.5 3rd Qu.:293.5 3rd Qu.:234 3rd Qu.:245.5 3rd Qu.:121 3rd Qu.:564
Max. :564.0 Max. :293.5 Max. :234 Max. :245.5 Max. :121 Max. :564
NA's :19
NA's :19 NA's :19
NA's :19 NA's :19
Download