We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 01d47c8 commit f6b24c7Copy full SHA for f6b24c7
man/setDT.Rd
@@ -65,7 +65,7 @@ setDT(X, check.names=TRUE)[]
65
rds_file = tempfile("my_data.rds_")
66
# Step 2: Create and save data.table if the file does not exist
67
if (!file.exists(rds_file)) {
68
- X <- data.table(a = 1:5, b = letters[1:5]) # Create a data.table
+ X <- data.table(a=1:5, b=letters[1:5]) # Create a data.table
69
saveRDS(X, rds_file) # Save it to an RDS file
70
message("Saved data.table to ", rds_file)
71
}
0 commit comments