Ran
is pronounced like RUN, ji
is pronounced like English alphabet G.
🔥 Get streak stats for your profile at git.io/streak-stats
Ran
is pronounced like RUN, ji
is pronounced like English alphabet G.
🔥 Get streak stats for your profile at git.io/streak-stats
library(tidyverse)
category <- c("red", "blue", "green", "yellow")
tag <- c("yes", "no", "maybe", "idk")
value <- c(21, 1, 10, 9)
df <- data.frame(category, tag, value) %>%
library(caret)
# Create training and test sets
set.seed(123)
trainIndex <- sample(c(FALSE,TRUE), size = nrow(dat), prob = c(.25,.75), replace = TRUE)
train_set <- dat[trainIndex, ]
A py3 code that implements batch linear regressor using gradient descent.
Jupyter Notebook
Contains coursework assignments made in latex.