I have a table in R that I am using to make a barplot:
我在R中有一张桌子,用来制作一个条形图:
86 17 482 424 C
87 18 600 426 T
88 11 279 427 Q
89 X 399 436 B
I can make the plot with barplot(table$V3
) but how do I use the values in V4 as the names for each V3 entry?
我可以使用条形图(表格$ V3)制作图表但是如何使用V4中的值作为每个V3条目的名称?
1 个解决方案
#1
1
just use
只是用
barplot(DF$V3, names.arg=DF$V4)
where DF
is your data.frame
(a table
is something else in R
. If you actually mean table
, please indicate as such)
其中DF是你的data.frame(一个表是R中的其他东西。如果你真的是指表,请注明表格)
#1
1
just use
只是用
barplot(DF$V3, names.arg=DF$V4)
where DF
is your data.frame
(a table
is something else in R
. If you actually mean table
, please indicate as such)
其中DF是你的data.frame(一个表是R中的其他东西。如果你真的是指表,请注明表格)