Programming
R 에서 큰 숫자를 입력했을때 1+e05 로 표현되는 현상 고치기
TanSanC
2022. 11. 8. 23:10
How can I paste 100000 without it being shortened to 1e+05?
Question: How can I use paste without 100000 becoming 1e+05? Sorry in advance if this question seems frivolous (but it has resulted in a bug in my code). I use R to call an external script, so wh...
stackoverflow.com
R> options("scipen"=10) # set high penalty for scientific display