#loading of dataset
library(readr)
cancer <- read_csv("C:/Users/arshn/OneDrive/Desktop/cap 482 project/cancer.csv")
## Rows: 212691 Columns: 17
## ── Column specification ────────────────────────────────────────────────────────
## Delimiter: ","
## chr (11): Gender, Country, Ethnicity, Family_History, Radiation_Exposure, Io...
## dbl (6): Patient_ID, Age, TSH_Level, T3_Level, T4_Level, Nodule_Size
##
## ℹ 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(cancer)
#Level 1: Understanding the Dataset (Basic Exploration) # Check structure
str(data)
## function (..., list = character(), package = NULL, lib.loc = NULL, verbose = getOption("verbose"),
## envir = .GlobalEnv, overwrite = TRUE)
class(data)
## [1] "function"