"R format()"의 두 판 사이의 차이

(새 문서: ==개요== ;R format() <source lang='r'> format(1:10) ## [1] " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" " 9" "10" format(1:10, trim = TRUE) ## [1] "1" "2" "3" "4" "5" "6" "7" "8"...)
 
잔글 (봇: 자동으로 텍스트 교체 (-<source +<syntaxhighlight , -</source> +</syntaxhighlight>))
 
(다른 사용자 한 명의 중간 판 하나는 보이지 않습니다)
2번째 줄: 2번째 줄:
;R format()
;R format()


<source lang='r'>
<syntaxhighlight lang='r' run>
format(1:10)
format(1:10)
## [1] " 1" " 2" " 3" " 4" " 5" " 6" " 7" " 8" " 9" "10"
</syntaxhighlight>
<syntaxhighlight lang='r' run>
format(1:10, trim = TRUE)
format(1:10, trim = TRUE)
## [1] "1"  "2"  "3"  "4"  "5"  "6"  "7"  "8"  "9"  "10"
</syntaxhighlight>
</source>
<syntaxhighlight lang='r' run>
<source lang='r'>
format(13.7)
format(13.7)
## [1] "13.7"
</syntaxhighlight>
<syntaxhighlight lang='r' run>
format(13.7, nsmall = 3)
format(13.7, nsmall = 3)
## [1] "13.700"
</syntaxhighlight>
</source>
<syntaxhighlight lang='r' run>
<source lang='r'>
format(c(6.0, 13.1), digits = 2)
format(c(6.0, 13.1), digits = 2)
## [1] " 6" "13"
</syntaxhighlight>
<syntaxhighlight lang='r' run>
format(c(6.0, 13.1), digits = 2, nsmall = 1)
format(c(6.0, 13.1), digits = 2, nsmall = 1)
## [1] " 6.0" "13.1"
</syntaxhighlight>
</source>
<syntaxhighlight lang='r' run>
<source lang='r'>
format(2^31-1)
format(2^31-1)
## [1] "2147483647"
</syntaxhighlight>
<syntaxhighlight lang='r' run>
format(2^31-1, scientific = TRUE)
format(2^31-1, scientific = TRUE)
## [1] "2.147484e+09"
</syntaxhighlight>
</source>
<syntaxhighlight lang='r' run>
<source lang='r'>
format(as.Date("2019-12-25"), "%d/%m/%Y")
format(as.Date("2019-12-25"), "%d/%m/%Y")
## [1] "25/12/2019"
</syntaxhighlight>
</source>


==같이 보기==
==같이 보기==

2022년 4월 18일 (월) 00:44 기준 최신판

1 개요[ | ]

R format()
format(1:10)
format(1:10, trim = TRUE)
format(13.7)
format(13.7, nsmall = 3)
format(c(6.0, 13.1), digits = 2)
format(c(6.0, 13.1), digits = 2, nsmall = 1)
format(2^31-1)
format(2^31-1, scientific = TRUE)
format(as.Date("2019-12-25"), "%d/%m/%Y")

2 같이 보기[ | ]

3 참고[ | ]

문서 댓글 ({{ doc_comments.length }})
{{ comment.name }} {{ comment.created | snstime }}