Where to go from here?

Learn about code control structures and functions:

https://teaching.mlspatial.org/r_control/

f <- function(){
    
}

for(i in 1:5){
    
}

if(TRUE){
    
}else{
    
}

lapply(seq(5), function(){
    
})