You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, 2.4.5 references options(stringsAsFactors=FALSE) as a .Rprofile preset that can make code less portable. R 4.0.0 made stringsAsFactors=FALSE the default behavior, so recommend re-write or suggest different non-portable example in .Rprofile file.
Snippet:
Try to avoid adding options to the start-up file that make your code non-portable. For example, adding options(stringsAsFactors = FALSE) to your start-up script has knock-on effects for read.table and related functions including read.csv, making them convert text strings into characters rather than into factors as is default. This may be useful for you, but can make your code less portable, so be warned.
The text was updated successfully, but these errors were encountered:
Currently, 2.4.5 references
options(stringsAsFactors=FALSE)
as a .Rprofile preset that can make code less portable. R 4.0.0 made stringsAsFactors=FALSE the default behavior, so recommend re-write or suggest different non-portable example in .Rprofile file.Snippet:
The text was updated successfully, but these errors were encountered: