0
我目前正在嘗試更改數據幀列中的性別值以保持一致性。 我目前有以下代碼,但它不會更改任何行值。它爲每個值一致地打印「男性」,但不會在數據幀中更新。替換列值如果它包含一個字符串或字符R
count <- 0
for(i in mySubset$Gender){
count = count + 1
if('Male' %in% i){
mySubset$Gender[count] <- 'male'
print(mySubset$Gender[count])
}
}
可以顯示樣本數據和期望的輸出嗎? –