Authors

jeromyanglim 20

R Workflow: Melbourne R Users Dec 1st 2010 Latest

18.12.2010

Melbourne R Users Group December 1st 2010 Meeting (Meetup page).1. “What my R code looks and feels like (Vanilla)” by Geoff RobinsonThe other talk from the session was by Geoff Robinson who discussed several useful strategies for working with...

946 sym 2 img

Jerrel 20

Week 2 Latest

13.09.2020

1 Binomial Distribution 1.1 Question What is a binomial distribution in Statistics? What is binomial distribution used for? Please argue 4 requirements needed to be a binomial distribution? Is a binomial distribution a normal distribution?...

24130 sym R (560 sym/16 pcs)

Jhonier Rangel 20

Principios de inferencia Latest

10.10.2022

Generación de variables aleatorias normal x1<-rnorm(10,3,1) hist(x1) x2<-rnorm(100,3,1) hist(x2) x3<-rnorm(1000,3,1) hist(x3) x<-seq(0,7,length=500) f<-dnorm(x,3,1) plot(x,f,type = "l") General binomiales Se verifica que la...

3543 sym R (6038 sym/101 pcs) 27 img

Zhongming Jiang 20

Exploratory Data Analysis Latest

05.05.2023

library("rjson") library("DT") library("data.table") library("tidyverse") ## ── Attaching packages ─────────────────────────────────────── tidyverse 1.3.2 ── ##...

827 sym R (44227 sym/99 pcs) 23 img

Week 1 R assignment Latest

26.12.2022

Jian Quan Chen ##1. Write a loop that calculates 12-factorial factorial <- 1 for (x in 12:1) { factorial <- factorial * x } print(factorial) ## [1] 479001600 #2. Show how to create a numeric vector that contains the sequence from 20 to 50...

459 sym Python (550 sym/6 pcs)

COVID-19 Leaflet Lesson, Spring 2020 Latest

14.04.2020

This is the code and output for a Spring 2020 instruction session on how to use the leaflet R package to create interactive maps. Load Packages # Load in packages library(tidyverse) library(leaflet) Leaflet # Take a look at Leaflet leaflet() #...

559 sym R (5733 sym/23 pcs)

James Hardaway 20

Hardaway_Unit2W6_DataProduct Latest

22.09.2021

library("tidyverse") install.packages("ggthemes") library(ggthemes) data_to_viz <- read_csv("data/data-to-explore.csv") filter(data_to_viz, !is.na(gender)) %>% ggplot() + geom_bar(aes(x = subject, fill = gender), width = .5, position =...

746 sym R (767 sym/1 pcs) 1 img

Johannes B. Gruber on Johannes B. Gruber 20

Highly Similar Texts Latest

16.05.2018

Available solutions: the accurate one Available solutions: the fast one Divide and conquer Implementation in LexisNexisTools A while ago I was building a database of newspaper articles retrieved from LexisNexis for a research project in which I...

8397 sym R (3845 sym/10 pcs) 3 tbl

Jon Calder's R Blog 20

Breaking the Silence Latest

07.12.2016

Reflections on new beginnings… – In April of 2016, I made a new friend. His name is Lorenz and he is from Switzerland. We met one evening when I arrived to pick him up for a small church group meeting, and he ambled up to...

3375 sym 8 img

Jonathan Velazquez 20

U1A1_Ejercicio 2 Latest

02.02.2021

Hipotesis Jonathan Velazquez 01/02/2021 Prueba de hipótesis para un experimento Nuestro conocimiento solo puede ser finito, mientras que nuestra ignorancia debe ser necesariamente infinita. -Karl Popper Karl Popper Introducción La...

4065 sym R (1524 sym/17 pcs) 2 img 1 tbl