Authors
Jairemy Edwards 23
Practice with Logit Regression in R, Analysis and Interpretation Latest
24.02.2020
library(haven) library(foreign) library(readr) library(dplyr) ## ## Attaching package: 'dplyr' ## The following objects are masked from 'package:stats': ## ## filter, lag ## The following objects are masked from 'package:base': ##...
921 sym R (5163 sym/52 pcs) 1 tbl
Jose Gerardo Bermudez Diaz 23
Cuaderno 3 Latest
21.04.2022
1. Introducción En este cuaderno se va a elaborar diagramas estadísticos cuya función será mostrar de una forma dinámica la participación de los grupos de cultivos con mayor producción del departamento de Boyacá, usando una base de...
837 sym R (16849 sym/47 pcs) 6 img
Jemima Reyes Macias 23
Probando Latest
14.02.2022
Objetivo El objetivo de la práctica es probar el funcionamiento de R markdown Descripción Descripción de la práctica Fundamento teórico Fundamento teórico que será proporcionado por el docente Desarrollo Cargar librerías...
363 sym R (1034 sym/4 pcs)
palomadominguez 22
u1a1 Latest
29.01.2021
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^3 ## [1] 27 3^7 ## [1] 2187 2^(-3) ## [1] 0.125 100^(1/2) ## [1] 10 sqrt(100) ## [1] 10 pi ## [1] 3.141593 exp(1) ## [1] 2.718282 log(exp(1)) ## [1] 1...
47 sym R (307 sym/41 pcs)
Hailey_Rousey 22
R Bootcamp Latest
19.09.2022
What is statistics? - The field of statistics: the practice and study of collecting and analyzing data. - A summary statistic: a fact about or summary of some data Types of Statistics - Descriptive statistics: describe and summarize data -...
4780 sym R (7772 sym/34 pcs) 1 img
Nick Wilson 22
Best Practices 1 Latest
05.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 and...
2195 sym
Nicholas Jacob 22
Homework Helper Module 0 Latest
21.11.2020
Keep It Simple My goal of this document is to show you how to do your homeworks by using R and more specifically base R (no packages!) I am not going to load any data so I’ll have to be given the statistics, just like the WeBWorK questions. You...
4756 sym R (932 sym/24 pcs)
Classification on Spotify Latest
10.08.2021
We are basically saying that given the presence of Genres(using the top 8) by month we are going to be able to predict whether the month results (streams=popularity)is going to be satisfactory. The majority of the genre counts in my data set is...
3624 sym R (149836 sym/90 pcs) 4 img
Natalie Kalukeerthie 22
R Bridge Course Week 1 HW - Natalie Kalukeerthie Latest
25.12.2022
1. Write a loop that calculates 12-factorial: my_fact <- 1 #defining vector #loops to 12 for (x in 1:12) { my_fact <- my_fact * x cat(x, "!: ", my_fact, "\n") } ## 1 !: 1 ## 2 !: 2 ## 3 !: 6 ## 4 !: 24 ## 5 !: 120 ## 6 !:...
321 sym