Authors

StyleGAN2_TrainingRun1_Summary Latest

21.09.2020

StyleGAN2 - Augmentation Strategies Discussion Required: Since terminating the first GAN training run, we need to decide how to proceede I would appreciate some input on potential next steps What kind of data-processing makes sense Can we apply...

5128 sym 6 img

SP 61

Plots, plots, plots! Latest

14.09.2022

Load packages library(tidyverse) library(gapminder) Make a copy of gapminder df1 <- gapminder Inspect the data: The first 6 rows df1 %>% head() ## # A tibble: 6 × 6 ## country continent year lifeExp pop gdpPercap ## <fct>...

404 sym R (5044 sym/24 pcs) 10 img

marijose 61

U1A1 Latest

27.08.2020

# Script del primer ejercicio de la materia de PyE # 26/08/2020 # Marijose González # Ejercicio básico de graficación de variables #Establecer folder de trabajo setwd("~/PYE1112AD") #Activar el paquete tidyverse library(tidyverse) ##...

6 sym R (2013 sym/6 pcs) 1 img

Christian Thieme 61

Week 1 Assignment - R Bridge Course Latest

18.12.2019

1. Write a loop that calculates 12-factorial: val = 1 for (i in 1:12) { val <- sum(i * val) } sprintf("12! = %f", val) ## [1] "12! = 479001600.000000" 2. Show how to create a numeric vector that contains the sequence from 20 to 50 by 5:...

314 sym R (778 sym/8 pcs)

Md Forhad Akbar 61

Data 606: Chapter 9 - Multiple and Logistic Regression Latest

23.11.2019

Baby weights, Part I. (9.1, p. 350) The Child Health and Development Studies investigate a range of topics. One study considered all pregnancies between 1960 and 1967 among women in the Kaiser Foundation Health Plan in the San Francisco East Bay...

8465 sym R (995 sym/15 pcs) 2 img

business-science.io - Articles 61

Speed Up Your Code Part 2: Parallel Processing Financial Data with multidplyr + tidyquant Latest

20.01.2017

Since my initial post on parallel processing with multidplyr, there have been some recent changes in the tidy eco-system: namely the package tidyquant, which brings financial analysis to the tidyverse. The tidyquant package drastically increase...

12081 sym R (7220 sym/28 pcs) 2 img

Abdelmalek Hajjam 61

Data606 - Homework 9 Latest

23.11.2019

Baby weights, Part I. (9.1, p. 350) The Child Health and Development Studies investigate a range of topics. One study considered all pregnancies between 1960 and 1967 among women in the Kaiser Foundation Health Plan in the San Francisco East Bay...

8409 sym R (1136 sym/18 pcs) 3 img

David Blumenstiel 61

R HW, Week 1 Latest

21.12.2019

##R HW Week 1 ##David Blumenstiel 1. Write a loop that calculates 12-factorial x<-1 for (i in 1:12) { x = x * i } print(x) ## [1] 479001600 2. Show how to create a numeric vector that contains the sequence from 20 to 50 by 5. vec <-...

347 sym R (332 sym/8 pcs)

Scott Chamberlain 61

A new blog about using R for ecology and evolution Latest

27.12.2010

I am starting this blog not because I am a seasoned code writer, but because I am learning how to use R specifically for ecology and evolution, and figured many others might have the same questions I have. If I find cool solutions I...

697 sym 2 img

EC245OL-Module1 Assignment-Key Latest

06.09.2021

A school in the Midwest is concerned with the recent drop in female students in its online education program. It decides to collect data from the admissions office on each applicant. The variables collected include gender, age, distance from...

4107 sym 4 img 5 tbl