Data Visualization with R codes: Barplots and Scatter plots
Read the earlier article to understand the data by clicking […]
Data analytics and Digital Marketing
Read the earlier article to understand the data by clicking […]
Download the dataset by clicking on the below link Targeted […]
This article aims to discuss various evaluation / performance metrics […]
Decision tree can be used for both classification and regression problems. […]
## Factors in R> > theory <- “R uses factors […]
> ### Dataframes are two dimensional structure with rows and […]
setwd(“”)library(readr)WA_Fn_UseC_Telco_Customer_Churn <- read_csv(“WA_Fn-UseC_-Telco-Customer-Churn.csv”)View(WA_Fn_UseC_Telco_Customer_Churn)dataset <- WA_Fn_UseC_Telco_Customer_Churnstr(dataset)head(dataset)tail(dataset)View(dataset)# Converting to factorsdataset$gender <- as.factor(dataset$gender)dataset$SeniorCitizen […]
#creating a fresh copy of the data to work on […]
This free course on data science for beginners will introduce […]
You are already Subscribed!!!