要將R語言中的指定列轉化為數值型,可以使用as.numeric()函數。以下是示例代碼:
# 創建一個數據框
df <- data.frame(col1 = c("1", "2", "3", "4"),
col2 = c("5", "6", "7", "8"),
col3 = c("9", "10", "11", "12"),
stringsAsFactors = FALSE)
# 將指定列轉化為數值型
df$col1 <- as.numeric(df$col1)
df$col2 <- as.numeric(df$col2)
# 打印轉化后的數據框
print(df)
運行以上代碼后,會將col1和col2列轉化為數值型,并打印轉化后的數據框。