我想知道如何从我创建的数据框中更改这样的数据:
Variable Freq and Variable Freq
01 3 M 10
02 2
03 4
04 5
到
01 3
02 2
03 4
04 5
M 10
我用来获取这两个表的代码是:
y = as.data.frame(length(unique(index_visit$PatientID)))
x = as.data.frame(table(index_visit$ProcedureID))