Authors

Karen 22

U1A1 Latest

28.01.2021

"U1A1" ## [1] "U1A1" "numeric" ## [1] "numeric" 3+2 ## [1] 5 3-2 ## [1] 1 4-4 ## [1] 0 3*2 ## [1] 6 4*5 ## [1] 20 10/2 ## [1] 5 3^2 ## [1] 9 3^7 ## [1] 2187 2^(-3) ## [1] 0.125 100^(1/2) ## [1] 10 sqrt(100) ## [1] 10 pi ## [1] 3.141593 exp(1) ##...

96 sym R (1130 sym/90 pcs)

Keith Colella 22

R - Week 1 Homework Latest

26.12.2022

Question #1 - Loop to calculate 12! Define function factorial <- function(input){ product <- 1 list <- (1:input) for (val in list){ n <- list[length(list)-val+1] product <- product * n } return(product) } Use function to...

229 sym Python (507 sym/10 pcs)

Jose Ramon A01625203 22

Cancer de mama Latest

09.09.2022

Apoyo la lucha contra el cancer de mama Entre el 11 y 15% de los casos son de mujeres de 40 o menos años. Importar base de datos #file.choose() base_de_datos <-read.csv( "/Users/joseramonvazquezguzman/Documents/Tecnológico de...

1575 sym R (5701 sym/10 pcs) 5 img

Joshua Kunst 22

Live Autoregressive Process Latest

26.08.2012

This post join two things that I like: Highcharts and the Time series. So I have a lot of fun making this minipost to show how works an autoregressive process. Well, let’s remember the structure of an autoregresive process. $y_t =...

1616 sym 2 img

Test Upload Latest

26.08.2021

Test arrays number arr <- sample(1:100,100,replace=T) print(arr) ## [1] 92 32 10 8 66 52 86 18 2 58 81 36 77 92 28 24 55 78 ## [19] 48 23 24 6 21 97 57 93 96 82 22 49 78 13 2 80 22 60 ## [37] 7...

184 sym R (986 sym/11 pcs) 2 img

John Christie 22

week 2 hw Latest

07.09.2022

Chapter 1 It’s Not Just about Forecasting The following are the key points in the chapter. Elaborate on each point in at least 30 words. Understanding economics can help you to diagnose the causes of increases or decreases in sales volumes...

1246 sym

Jennifer Johnson 22

3_Wk3 Lab_Biostat MATH117 Latest

17.02.2020

Probability: Hot Hands download.file("http://www.openintro.org/stat/data/kobe.RData", destfile = "kobe.RData") load("kobe.RData") head(kobe) ## vs game quarter time description ## 1 ORL 1...

3189 sym R (4415 sym/33 pcs) 3 img

Jacob M. Souch 22

test Latest

28.01.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...

598 sym 1 img

Jeff Parks 22

FiveThirtyEight - COVIID-19 Approval Tracker Latest

30.08.2021

FiveThirtyEight COVID-19 Approval Tracker Jeff Parks 2021-08-29 Introduction FiveThirtyEight publishes a daily tracker measuring public approval of the President’s handling of the COVID-19 pandemic. Their approach aggregates all available,...

2612 sym 7 img

Data 622 HW1Q3 Latest

28.03.2020

Instructions Please find kNN.R This R script requires a dataset, labelcol and K (number of nearest neighbors to be considered) The dataset MUST Be numeric, except the labelcol The labelcol must be the last column in the data.frame All the other...

2445 sym R (4723 sym/17 pcs)