Publications by Dagvadorj

Homework 4

23.10.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

598 sym 1 img

Homework2

10.10.2023

library(readxl) library(dplyr) netflix_df <- read_excel(“Netflix.xlsx”) netflix_df <- netflix_df %>% separate_rows(cast, sep = “,”) netflix_df <- netflix_df %>% rename(actor = cast) top_actors <- netflix_df %>% count(actor, sort = TRUE) %>% top_n(6) print(top_actors)...

275 sym

Document

25.09.2023

R Markdown This is an R Markdown document. Markdown is a simple formatting syntax for authoring HTML, PDF, and MS Word documents. For more details on using R Markdown see http://rmarkdown.rstudio.com. When you click the Knit button a document will be generated that includes both content as well as the output of any embedded R code chunks within...

598 sym 1 img

Adult Census Income Prediction Model Fitting

05.08.2021

1 Executive summary In order to practice data wrangling, exploratory data analysis, and model fitting, Adult Census Income [2] data set is used. The data set includes income information as classification that consists of whether the income is more than or less than 50k per annum for people whose socio-economic and demographic information is provi...

8715 sym R (35875 sym/88 pcs) 10 img

MovieLens

23.07.2021

1 Executive summary MovieLens database is examined and models were reviewed and fit. The initial section of the code is based on the boilerplate code provided at the “Create Train and Final Hold-out Test Sets” section of the course [1]. Following columns were added to the movielens dataframe in order to be used as potential predictors: releas...

6242 sym R (16637 sym/35 pcs) 8 img