October 2021

Predicting Breast Cancer Using Support Vector Machine in R

Breast Cancer Prediction Breast Cancer Prediction Sachin Sharma 10/17/2021 Installing required package Importing Libraries library(devtools) ## Loading required package: usethis library(readr) library(knitr) library(ggplot2) library(plotly) ## ## Attaching package: 'plotly' ## The following object is masked from 'package:ggplot2': ## ## last_plot ## The following object is masked from 'package:stats': ## ## filter ## The following object …

Predicting Breast Cancer Using Support Vector Machine in R Read More »

Regression Model in R Programming

Regression Model In R Programming Regression Model In R Programming Sachin Sharma 10/7/2021 library(tidyverse) ## — Attaching packages ————————————— tidyverse 1.3.1 — ## v ggplot2 3.3.5 v purrr 0.3.4 ## v tibble 3.1.4 v dplyr 1.0.7 ## v tidyr 1.1.3 v stringr 1.4.0 ## v readr 2.0.1 v forcats 0.5.1 ## — Conflicts —————————————— tidyverse_conflicts() …

Regression Model in R Programming Read More »

DPLYR Tutorial – Data Manipulation using DPLYR Package in R Programming

DPLYR-TUTORIAL—Data-Manipulation-with-DPLYR-in-R- DPLYR-TUTORIAL—Data-Manipulation-with-DPLYR-in-R- Sachin Sharma August 31, 2021 Why to use dplyr ? It is really useful for data exploration and transformation Fast while dealing with data frames Functionality of dplyr It is useful while dealing with : ‘select’,‘filter’, ‘mutate’ , ’ arrange’ , ‘summarise’, which can be use as five basic verbs Can be very …

DPLYR Tutorial – Data Manipulation using DPLYR Package in R Programming Read More »