library(readr)
HR_comma_sep_2_ <- read_csv("C:/Users/johnc/Downloads/HR_comma_sep(2).csv")
## Rows: 14999 Columns: 10
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## chr (2): Department, salary
## dbl (8): satisfaction_level, last_evaluation, number_project, average_montly...
##
## ℹ Use `spec()` to retrieve the full column specification for this data.
## ℹ Specify the column types or set `show_col_types = FALSE` to quiet this message.
View(HR_comma_sep_2_)
Satisfaction level: variable type is contiuous, data type is numeric
Last evaluation: variable type is contiuous, data type is numeric
Number project: categorical variable, character data
Average monthly hours: discrete variable, numeric data
Time spent at company: discrete variable, numeric data
Work accidents: binary variable, numeric, data
Left: discrete variable, numeric data
Promotion last 5 years: binary variable, numeric, data
Department: nominal variable, factor data type
Salary: ordinal variable, character data type