如何从头开始创建数据框?

时间:2018-10-06 10:12:27

标签: r dataframe

enter image description here enter image description here只是想知道如何以附加格式R创建数据框,然后以附加图形形式在R中对其进行图形绘制。

对不起,我没有比附上我确切想要实现的照片更好的方法了。

非常感谢!

1 个答案:

答案 0 :(得分:2)

数据框

data <- data.frame(
  type = c("BMW", "TOYOTA", "HONDA"),
  NC   = 100,
  SC   = 200,
  NY   = 150
)

绘图

library(ggplot) # Install first
library(data.table) # Install first
# Reshape data
data_melted <- melt(data, id.vars = "type")

# Now create the actual plot
ggplot(data_melted, aes(x = type, y = value, fill = variable)) +
  geom_col(position = "dodge")

结果

http://php.net/manual/en/mysqli-stmt.bind-param.php