100% tevredenheidsgarantie Direct beschikbaar na betaling Zowel online als in PDF Je zit nergens aan vast
logo-home
Summary Sheet of R codes to bring the day on the exam €5,57
In winkelwagen

Samenvatting

Summary Sheet of R codes to bring the day on the exam

 1 keer bekeken  0 keer verkocht

1 sheet paper with all the R codes used in the course to bring it on the day of the exam. It has also examples using the codes, that are very similar to the exercises of the exam.

Voorbeeld 1 van de 2  pagina's

  • 11 december 2024
  • 2
  • 2024/2025
  • Samenvatting
Alle documenten voor dit vak (1)
avatar-seller
mireiasabater24
UNIT 1 + 2: BASICS

Environment ls()
Remove: remove(unique_co2)
Remove all: rm(list=ls())
Operations Sum: sum(B,na.rm=TRUE)
Round: round(sqrt(42),digits=1)
Mean: mean(r)
Vector (1D) A<-c(2,4,6,8,10,12,14,16,18,20)
Replace value in a vector: B[2]<-1
Matrix (2D same class type) A<-matrix(c(1:9),nrow=3, ncol=3,byrow=TRUE)
Replace elements in a matrix: Q["Rafael",]<-1
Data frame (3D) Nile_data <- data.frame(Year = c(1871:1970), Flow = Nile)
Replace elements in a data frame: lb19[1,1]<-"Sara"
List (different class types) trees_list<-list(v_one=trees_heights,v_two=trees_names,df=trees_data_frame)
Row and column names rownames(merge_Nile_temp)<-merge_Nile_temp$Year
colnames(iris)[c(1:5)]<-c("Sepal.L","sepal.W","Petal.L","Petal.W","Species")
class class(First<-FALSE)
Convert to a numeric object: as.numeric(B)
Convert to a logical object: as.logical(B_numeric+A)
Convert to a data frame: as.data.frame(my_data)
Convert to a factor: data_savanna$SPP <- as.factor(data_savanna$SPP)
Convert to a character: trees<-as.character(unique(Orange$Tree))
UNIT 3 + 4: DATA MANAGEMENT

Set working directory setwd("C:/Users/misab/OneDrive/Documentos/BIOMED/4rt curs/Introduction to R/my_WD")
Get working directory: getwd()
Overview of the files: list.files("my_WD")
Create in the working directory Folders: dir.create("my_WD/Raw_Data")
Copy file: file.copy(“my_WD/test.txt”,to=”my_WD/Raw_Data”)
Delete file: file.remove("my_WD/test.txt")
Save in working directory CSV: write.csv(iris,file="Raw_data/iris.csv", row.names=FALSE)
RDS: saveRDS(B,file="Raw_Data/B.rds")
RData: save(lb19,lb20,lb,file="Derived_data/LU3_7_8.RData")
Load data to R CSV: my_data<-read.csv("Raw_Data/my_data.csv",header=FALSE, sep=";")
RDS: readRDS(file="Raw_Data/B.rds")
RData (read only names): lbd<-load("Derived_data/LU3_7_6.RData")
Load data from R data(iris)
information: ?iris
Data information str(iris)
head(iris_width)
Add a new column iris$Flower_ID<-rownames(iris)
Replace elements of a column: students_clean$lang_correct[students_clean$class==10980]<-
students_clean$lang_correct[students_clean$class==10980]+1
Paste rownames(iris) <- paste("flower", rownames(iris), sep="_")
Change to lower case letters mammals_data_combined$kingdom_name <- tolower(mammals_data_combined$kingdom_name)
Missing values (NA) any(is.na(iris))
Sum: sum(is.na(airquality$Ozone))
Remove: iris_no_na<-iris[complete.cases(iris),]
Duplicates duplicated(co2)
anyDuplicated(IUCN_combined_unique)
any(duplicated(students$studentID))
Remove: unique_co2<-unique(co2)
Merge mammals_data_combined<-
merge(x=IUCN_mammals,y=mammalsFunctionalData,by="scientific_name",all=FALSE)
Bind Columns: cbind(countries_iris,head_iris_width)
Rows: IUCN_combined<-data.frame(rbind(IUCN_mammals,IUCN_primates_not_lemuridae))
Subset Equal: esoph[esoph$ncases==0,]
More than: subset(esoph,ncontrols>2*ncases)
More or equal to: subset(esoph,ncontrols>=10)
Less than: <
Less or equal to: <=
Not to: subset(esoph, !ncontrols<=2*ncases)
And: esoph[esoph$tobgp=="30+"&esoph$ncases=="0",]
Or: esoph[esoph$tobgp=="0-9g/day"|esoph$alcgp=="0-39g/day",]
Select rows/ columns: esoph[c(1:4),c(4:5)]
Not select rows/ columns: IUCN_mammals_removed<-IUCN_mammals[-
seq(from=10,to=nrow(IUCN_mammals), by =10),-c(3,6,9)]
Inside: students_clean[students_clean$lang%in%box_lang$out,]
Sequence esoph[seq(from=1,to=4,by=1),seq(from=1,to=5,by=2)]
Order esoph[order(esoph$agegp,esoph$ncases,decreasing = TRUE),]
Conditional (if else) +2 answers: if(esoph$ncontrols[6]>esoph$ncontrols[38]){
print("observation 6 has more number of controls than observation 38")
}
else if(esoph$ncontrols[6]<esoph$ncontrols[38]){
print("observation 6 has fewer number of controls than observation 38")
}
else{
print(“observation 6 has the same number of controls than observation 38”)
}
2 answers: esoph$twice_nr_controls<-ifelse(esoph$ncontrols>2*esoph$ncases,"Yes","No")
Which (categorical), if (numerical) rowsOmnivore <- which(mammals_data_combined_subset$Diet_description == "Omnivore")
if (length(rowsOmnivore) > 0) {
print(mammals_data_combined_subset[rowsOmnivore, c("genus_name", "Species")])
}
else {
print("None of these species is an omnivore")
}
UNIT 5: DATA ANALYSIS

Plot operations All: summary(InsectSprays)
Median: median(InsectSprays$count)
Quantile: quantile(InsectSprays$count,probs = c(0.25,0.75))

Voordelen van het kopen van samenvattingen bij Stuvia op een rij:

Verzekerd van kwaliteit door reviews

Verzekerd van kwaliteit door reviews

Stuvia-klanten hebben meer dan 700.000 samenvattingen beoordeeld. Zo weet je zeker dat je de beste documenten koopt!

Snel en makkelijk kopen

Snel en makkelijk kopen

Je betaalt supersnel en eenmalig met iDeal, creditcard of Stuvia-tegoed voor de samenvatting. Zonder lidmaatschap.

Focus op de essentie

Focus op de essentie

Samenvattingen worden geschreven voor en door anderen. Daarom zijn de samenvattingen altijd betrouwbaar en actueel. Zo kom je snel tot de kern!

Veelgestelde vragen

Wat krijg ik als ik dit document koop?

Je krijgt een PDF, die direct beschikbaar is na je aankoop. Het gekochte document is altijd, overal en oneindig toegankelijk via je profiel.

Tevredenheidsgarantie: hoe werkt dat?

Onze tevredenheidsgarantie zorgt ervoor dat je altijd een studiedocument vindt dat goed bij je past. Je vult een formulier in en onze klantenservice regelt de rest.

Van wie koop ik deze samenvatting?

Stuvia is een marktplaats, je koop dit document dus niet van ons, maar van verkoper mireiasabater24. Stuvia faciliteert de betaling aan de verkoper.

Zit ik meteen vast aan een abonnement?

Nee, je koopt alleen deze samenvatting voor €5,57. Je zit daarna nergens aan vast.

Is Stuvia te vertrouwen?

4,6 sterren op Google & Trustpilot (+1000 reviews)

Afgelopen 30 dagen zijn er 56326 samenvattingen verkocht

Opgericht in 2010, al 14 jaar dé plek om samenvattingen te kopen

Start met verkopen
€5,57
  • (0)
In winkelwagen
Toegevoegd