/* * http://sosal.kr/ * made by so_Sal */ factor는 R에서 제공하는 categorical variable(범주형 변수)로, 여러개의 level로 구성된다. 혈액형이라는 범주형 변수가 존재할 때, A,B,AB,O 라는 level을 가지게 된다. > BloodType summary(BloodType) Length Class Mode 10 character character 위에서 정의한 BloodType이라는 vector를 factor로 형변한 하기 위해서 factor() 함수를 사용한다. Description The function factor is used to encode a vector as a factor (the terms ‘category’ and ‘enum..