Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion software/R/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -320,7 +320,7 @@ When it comes to small data and short operations (e.g. reordering columns, summi
```r
library(data.table)
df <- data.frame(a=c(1,2), b=c(3,4))
# to convert from base R to data.tbale:
# to convert from base R to data.table:
setDT(df)
# can also do it by copying: dt <- as.data.table(df)
# whereas 'setDT' modifies the object in-place
Expand Down