我尝试从内置数据(它的向量)创建一个名为percip的数据框。以下是代码:
data("precip")
str(precip)
Named num [1:70] 67 54.7 7 48.5 14 17.2 20.7 13 43.4 40.2 ...
attr(*, "names")= chr [1:70] "Mobile" "Juneau" "Phoenix" "Little Rock" ...
head(precip)
Mobile Juneau Phoenix Little Rock Los Angeles Sacramento
67.0 54.7 7.0 48.5 14.0 17.2
如何创建一个数据框,其中我在一列中包含城市名称,在另一列中包含数字?
答案 0 :(得分:0)
df <- data.frame("City" = names(precip), precip)