Limpiar Memoria
rm(list=ls())
Directorio de Trabajo
getwd()
## [1] "D:/Usuarios/OSCAGAAl/Documents/Asesorias/Clases Diego Tarquino/Analisis Descriptivo o Exploratoria"
Librerias
source(list.files(pattern = "LIBRERIAS.R"))
## Warning: replacing previous import 'vctrs::data_frame' by 'tibble::data_frame'
## when loading 'dplyr'
##
## Attaching package: 'dplyr'
## The following objects are masked from 'package:stats':
##
## filter, lag
## The following objects are masked from 'package:base':
##
## intersect, setdiff, setequal, union
##
## Attaching package: 'lubridate'
## The following objects are masked from 'package:base':
##
## date, intersect, setdiff, union
Cargar Datos
df= read_csv("Insumos/UCI_Credit_Card.csv") # <- es lo mismo que igual
## Parsed with column specification:
## cols(
## .default = col_double()
## )
## See spec(...) for full column specifications.
Extructura
class(df)
## [1] "spec_tbl_df" "tbl_df" "tbl" "data.frame"
df= as.data.frame(df)
Visualizacion de los datos
head(df)