我正在尝试使用外部Package的read.spss函数读取R中的SPSS文件。
有两个导入实例,我将在这里反映。首先,当我使用命令read.spss(spssfile,to.data.frame = T)
导入1个月的数据文件时,它将该属性作为因子变量导入,并附加了级别。例如,下面是变量的变量水平的输出,就像因子变量在R中看起来一样。
52 Levels: Barrilito Bohemia Bud Light Budweiser Carta Blanca Coors Coors Light Corona ... Bocanegra
Screenshot of the output of the variable in console is in this image
现在,当我使用相同的命令spss.get(spssfile,use.value.labels = T)
导入27个月的相同数据时,它会导入相同的属性,其中包含该特定属性附加的级别和标签。
Output in console of the same attribute from 27 months datafile is given in this picture
我的要求是以我附加的第一个屏幕截图中给出的格式导入数据文件的一致性,即所有属性都应该作为因子变量导入,而不是像第二个屏幕截图中提到的那样单独的级别和标签。
请要求进一步澄清。任何帮助将不胜感激。
非常感谢