Authors

Adnaan 6

WEEK-1 Latest

14.11.2023

R program to add two vectors of integers type and length 3. #vector sum x=c(1,2,3) y=c(4,6,8) k=x+y print(k) ## [1] 5 8 11 R program to find the Sum, Mean, and Product of a Vector. v=c(1,2,3,4) s=sum(v) print(s) ## [1] 10 m=mean(v)...

844 sym

E3-002 6

Cuaderno General de ejercicios de Algebra Lineal Latest

17.11.2023

VECTORES Representación gráfica Se representa como una recta numérica, los elementos (a,b) se asocian con puntos de un plano, cada (a, b) se asocia con un punto de coordenada a en la recta horizontal (eje X) y la coordenada b en la recta...

926 sym 5 img

example r Latest

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

598 sym 1 img

Medicare Spending vs Cancer and Ischemic Heart Disease Mortality Rate Latest

19.11.2023

Milestone4_bw_hb_mp Joining dataset #Download all 3 datasets medicaid_final <- read_csv("medicaid_final.csv") %>% mutate(state=str_to_title(state)) mortality_final <- read_csv("mortality_final.csv") %>% mutate(state=str_to_title(state))...

4154 sym 2 img

West Indian Ancestry in Brooklyn Latest

20.11.2023

This exercise maps the proportion of people with West Indian ancestry in Brooklyn, New York using the American Community Survey data from 2020. library(tidyverse) library(tidycensus) library(sf) library(scales) library(RColorBrewer) library(plotly)...

890 sym R (2078 sym/7 pcs)

Dina Monterroza Barrios 6

EDA Latest

20.11.2023

Inicialmente se cargan los datos library(readr) datos <- read_csv("student-mat.csv", show_col_types = FALSE) RESUMEN ESTADISTICO summary(datos) ## school sex age address ## Length:395...

5951 sym R (15868 sym/39 pcs) 8 img

Stephanie Pass & Emily Colby 6

Milestone 4 Latest

21.11.2023

Scenario 1: Flu outbreak (simulated) and vaccine uptake in California Our group looked at flu infection rates and COVID-19 vaccination rates across California counties to better understand their relationship. Code used to join COVID-19 vaccination...

1698 sym

Nurhidaya 6

regresi Latest

21.11.2023

impor data dan summary data library(datasets) data(airquality) summary(airquality) ## Ozone Solar.R Wind Temp ## Min. : 1.00 Min. : 7.0 Min. : 1.700 Min. :56.00 ## 1st Qu.: 18.00...

130 sym R (895 sym/3 pcs) 1 img

Apriana Putri 6

LATIHAN R MARKDOWN : ANALISIS REGRESI Latest

21.11.2023

import dataset dan summary library(datasets) data("airquality") summary(airquality) ## Ozone Solar.R Wind Temp ## Min. : 1.00 Min. : 7.0 Min. : 1.700 Min. :56.00 ## 1st Qu.: 18.00...

324 sym R (1781 sym/5 pcs) 1 img

Xiumei Wang 6

Publish Document Latest

21.11.2023

Case Study Xiumei Wang November 23, 2023 Summary Case Study 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...

729 sym 1 img