Displaying 1 result from an estimated 1 matches for "wokrkaround".
Did you mean:
wokaround
2003 Dec 05
1
How to use Sys.setlocale("LC_NUMERIC")?
...) (comma as a
decimal point) in some useful way, without all the workarounds?
After switching to Sys.setlocale("LC_NUMERIC", "cs_CZ"):
-- How do I set attributes in read.csv2() not to get columns of real
numbers (decimal point = comma, field separator = semicolon) as factors?
Wokrkaround: I can go backward with
"as.numeric(levels(table$column))[table$column]".
-- How do I separte values in a vector then? For example ylim=c(2.4,
3.5) -> ylim=c(2,4 ? 3,5), not to get a syntax error with the
comma-decimal numbers?
Workaround: I can set the value before I switch to "...