LearnMore

'right' and 'include.lowest' parameter in cut() function 본문

Programming/R

'right' and 'include.lowest' parameter in cut() function

zionadd 2018. 8. 28. 16:21

Interval handle of Cut fucntion

If 'right' parameter is true, the cut interval is left open and right closed. However, if 'include.lowest' parameter is also true, the cut interval of lowest value will be closed.


If 'right' parameter is false, the cut interval is left closed and right open. However, if 'include.lowest' parameter is also true, the cut interval of highest value will be closed.





'Programming > R' 카테고리의 다른 글

Association Rule Analysis(Personal Project)  (0) 2018.10.16
ABTest(Personal Project)  (0) 2018.10.16
t() function in table  (0) 2018.08.28
'useNA' parameter in Table  (0) 2018.08.28
nrow() vs NROW()  (0) 2018.08.26
Comments