Publications by aardvarkfunnyxia

Publish Document

20.11.2023

qanda <- read.csv("selective_affinities.csv") qanda_modified <- read.csv("selective_affinities_aftermodified.csv") attach(qanda_modified) par (mfrow = c (2,2)) # Histogram 1 - these comments break up the code hist (Handspan, freq = TRUE, main = "Handspan - breaks every 0.5cm", xlab = "handspan", ylab = "frequency", breaks = seq (floor...

5 sym 1 img

Document

08.11.2023

Trantor_Uni <- c (87, 88, 87, 88, 88, 89, 87) plot(Trantor_Uni, ##### This is the name of the data we want to plot ylab = "percentage", ##### This is the name/label of the y-axis ylim = c(83, 92), ##### This shows the range of y-axis xlab = "Satisfaction %", ##### Similarly, the name/label of the x-ax...

6 sym 1 img

Document

07.11.2023

### Extension: Getting to know with what is substring ## create a data frame df <- data.frame (team = c ("Ahmad", "Bachelot", "Charles", "Douglass", "Friedman")) # view the data frame df ## team ## 1 Ahmad ## 2 Bachelot ## 3 Charles ## 4 Douglass ## 5 Friedman # string is something like a line, and the string in columns are the characte...

13 sym