Steps to install R packages in R studio
Open RStudio Click on the packages in R console at […]
Data analytics and Digital Marketing
Open RStudio Click on the packages in R console at […]
install.packages(‘Package name’) install.packages(‘Readxl’) install.packages(‘e1071’) install.packages(‘psych’) install.packages(‘ggplot2’) install.packages(‘caret’) install.packages(‘tidyverse’) install.packages(‘dplyr’) install.packages(‘tidyr’) […]
Steps to Read and import different data files in R […]
This case study study is about predicting customer churn in […]
This case study discusses steps to build loan default model […]
Start your Base R on your laptop or computer Basically, […]
# Let us create vectors in R# Vectors are one-dimension […]
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 […]
Train the model using the training sets and check score […]
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 […]
# Setting up working directorysetwd(“”)# Getting working directorygetwd()# Import the […]
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 […]
You are already Subscribed!!!