我有這個帶有一些變數的 .txt 檔案,例如,我想用一個新變數在 R 中將平方英尺(“SQFT”)轉換為平方米。我怎樣才能做到這一點?(我已經使用命令“read.delim”讀取了 R 中的檔案)
uj5u.com熱心網友回復:
我想這對你有用
# importing .txt file
# file should be your .txt file name. For example "a.txt"
data1 <- read.csv2(file ,header = T ,sep = ";", dec = ".")
# 1ft2= 0.09290304m2
SQMT <- data1$SQFT * 0.09290304
# Add new column to data1 for SQMT
data1 <- cbind(data1, SQMT)
# To see what's going on
data1
轉載請註明出處,本文鏈接:https://www.uj5u.com/ruanti/497091.html
上一篇:讀取帶有數字的檔案的int陣列?
下一篇:看不到自制檔案