R important things

R has no block comment, but you can still do the following things: In RStudio: Ctrl+Shift+C if(false){xxx} block   python to R df.tail() -> tail(df) dropna(df) ->na.omit(df) / df[complete.cases(df),] df.describe()…

0 Comments