Data Science Desktop Survival Guide
by Graham Williams |
|||||
Miscellaneous |
20200105
Preferred
threshold <- 0.7
maximum <- 1.5 minimum <- 0.1
Alternative |
threshold <- 0.7; maximum <- 1.5; minimum <- 0.1
Discouraged |
threshold <- 0.7;
maximum <- 1.5; minimum <- 0.1;
Do not abbreviate TRUE and FALSE to T and F. Preferred |
is_windows <- FALSE
open_source <- TRUE
Discouraged |
is_windows <- F
open_source <- T
Separate parameters in a function call with a comma followed by a space. Preferred |
dialPlot(value=78, label="UseR!", dial_radius=1)
Dicouraged |
dialPlot(value=78,label="UseR!",dial_radius=1)
|