我正在尝试从因子变量创建一个虚拟变量,它看起来像这样:
[1] cva accident w rt hemiparesis aphasial dm type ii htn
6589 Levels: cva accident w rt hemiparesis aphasial dm type ii htn ...
这是我用来创建虚拟变量的代码:
random_merge_patients$'MedCond_HTN' <- ifelse(random_merge_patients$'MedCond' %in% "htn",1,0)
我没有收到任何错误消息,但是当我尝试查看random_merge_patients$'MedCond_HTN'
时,即使应该有一些1,我也看到值都是0。
任何想法我的代码可能出错?