Authors

Dr Jens Roeser 59

Model evaluation Latest

15.02.2021

Model evaluation and violations Dr Jens Roeser Learning outcomes After completing this lecture, the workshop and your own reading you should be able to … explain what residuals are. run regression models with categorical predictors. evaluate...

8407 sym R (1781 sym/32 pcs) 44 img 9 tbl

GWAS tutorial (in Japanese) Latest

14.06.2020

本チュートリアルでは、Rを用いて GWASを行う方法について説明する。 例として利用するデータ  ここでは、Rを用いてGWASおよびGSモデル構築を行う方法を解説する。...

3178 sym R (13402 sym/30 pcs) 3 img

Vignette Author 59

0914 class_ex Latest

14.09.2020

Data management In this section, we load the exam scores data set, activate the help page for it, and examine the first 6 lines of the data frame object. # load the package to working directory library(mlmRev) # load the data from the package...

769 sym R (1265 sym/11 pcs) 1 img

Lu Mao ( 59

Prevalence of genitourinary abnormalities on CT urography Latest

19.09.2022

Frequency of no finding The frequency of no finding versus otherwise by hematuria type, scan type, and gender are plotted and tabulated below. The \(p\)-values are based on the Fisher’s exact test. Gross hematuria (N=53) Microscopic...

409 sym 5 img 4 tbl

Jaya Veluri 58

RCollegeMajors Latest

13.09.2021

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

603 sym R (2990 sym/12 pcs) 1 img

IvanTikhonov 58

IvanTikhonov 602 lab1 Latest

04.09.2022

install.packages(“tidyverse”) install.packages(“openintro”) install.packages(“dplyr”) library(tidyverse) ## ── Attaching packages...

2122 sym R (6356 sym/46 pcs) 6 img

Michael Hunt 58

WEBS Porth data exercises Latest

26.02.2020

Introduction In this exercise we will analyse the WEBS Porth data that you are using in your Zoology in Practice module. We will use this as an example data set that will give you practice in using R to answer whatever questons you might have of...

13180 sym R (3380 sym/26 pcs)

Why R? Foundation 58

Why R? 2019 Conference – Registration and Call for Papers Opened Latest

07.05.2019

Two editions of Why R? conferences were a great networking success. During each edition, we gathered around 200-300 R enthusiasts from Europe and we managed to carry out more than 25 workshops. Desire for a bigger event led us to the 3rd...

3132 sym 8 img

Shane Hylton 58

R Bridge HW 1 Latest

25.07.2021

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

346 sym R (1911 sym/9 pcs)

bridge-week-1 Latest

12.07.2023

Don’t bother grading I am an optional attendee of this this R Bridge program. Problem 1: 12 Factorial Write a loop that calculates 12-factorial recurse <- function(x){ if(x==1) { #stop calling yourself!! return(1) }...

529 sym