Publications by Kris Sutton

KS Data 110 Unit 5 Web Scrapping

02.07.2021

For this homework Assignment I will be web scrapping the IMDB website page “Feature Film, Released between 2016-01-01 and 2016-12-31” using the “Beginner’s Guide on Web Scraping in R” tutorial. Feature Film, Released between 2016-01-01 and 2016-12-31 https://www.imdb.com/search/title/?count=100&release_date=2016%2C2016&title_type=featur...

1693 sym R (122346 sym/82 pcs) 3 img

KS Data 101 Diamond Workshop Assignment

25.07.2021

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.2 ✓ dplyr 1.0.7 ## ✓ tidyr 1.1.3 ✓ stringr 1.4.0 ## ✓ readr 1.4.0 ✓ f...

5420 sym R (4677 sym/30 pcs) 13 img

KS Data 101 Data Transformation Assignment

25.07.2021

Introduction In this workshop we will do some of the exercises from Chapter 5 of R4DS. Exercises from 5.2.4 Use a separate code block for each exercise. library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## �...

2834 sym R (14509 sym/40 pcs)

KS MultiVariableRegression Part 1

15.08.2021

library(tidyverse) ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.1 ── ## ✓ ggplot2 3.3.5 ✓ purrr 0.3.4 ## ✓ tibble 3.1.3 ✓ dplyr 1.0.7 ## ✓ tidyr 1.1.3 ✓ stringr 1.4.0 ## ✓ readr 2.0.0 ✓ f...

7333 sym R (10131 sym/49 pcs) 1 tbl

KS Data 101 Project 3

07.08.2021

Introduction This project is intended to extend and supplement what we talked about last week in discussing Linear Regression. In some of the sections you will be asked to write R code to solve a particular problem. In some you will be asked to answer questions in your own words. library(tidyverse) Summary and Exercises Single Variable Regressi...

5454 sym R (10373 sym/103 pcs) 18 img

Human Freedom Index

18.08.2021

Introduction to Linear Regression The Human Freedom Index is a report that attempts to summarize the idea of “freedom” through a bunch of different variables for many countries around the globe. It serves as a rough objective measure for the relationships between the different types of freedom - whether it’s political, religious, economical...

30072 sym R (5180 sym/33 pcs) 8 img

Math 217 R Lab 5 Introduction to Inference"

01.03.2022

An assigned lab to investigate if a random sample of data can serve as point estimates for population parameters. This lab will formulate a sampling distribution of estimates from the random sample to learn about the distribution properties of the estimate. #download data file and load download.file("http://www.openintro.org/stat/data/ames.RData"...

4585 sym R (4291 sym/35 pcs) 8 img

HTML

21.02.2022

...

6 sym

Chapter 2 KS

15.02.2022

library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ## ## intersect, setdiff, setequal, union library(tidyverse) ## ── Attaching packages ──────────────────────...

1634 sym R (1333 sym/23 pcs) 4 img 1 tbl

Math 217 Lab 3 Probability - Kris Sutton

14.02.2022

library(tidyverse) ## Warning: package 'tibble' was built under R version 4.1.1 library(openintro) library(dplyr) library(tidyr) Exercise 1 Streak Lengths #view dataset glimpse(kobe_basket) ## Rows: 133 ## Columns: 6 ## $ vs <fct> ORL, ORL, ORL, ORL, ORL, ORL, ORL, ORL, ORL, ORL, ORL, ORL… ## $ game <int> 1, 1, 1, 1, 1, 1, 1, 1...

7634 sym R (9150 sym/42 pcs) 2 img