相对于R中的数字向量绘制字符向量 [英] Plot a character vector against a numeric vector in R

查看:110
本文介绍了相对于R中的数字向量绘制字符向量的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我在R中具有以下数据帧:

I have the following data frame in R:

>AcceptData
  Mean.Rank Sentence.Type
1       2.5       An+Sp+a
2       2.6      An+Nsp+a
3       2.1       An+Sp-a
4       3.1      An+Nsp-a
5       2.4       In+Sp+a
6       1.7      In+Nsp+a
7       3.1       In+Sp-a
8       3.0      In+Nsp-a

我想在x轴上以Sentence.Type列进行绘制,并以每个单元格的实际名称作为x轴上的点进行绘制.我希望y轴以.5的步长从1变到4

Which I want to plot, with the Sentence.Type column in the x axis, with the actual name of each cell as a point in the x axis. I want the y axis to go from 1 to 4 in steps of .5

到目前为止,我还无法使用plot()和hist()进行绘制.我不断收到不同类型的错误,主要是由于data.frame中字符列的性质.

So far I haven't been able to plot this, neither with plot() not with hist(). I keep getting different types of errors, mainly because of the nature of the character column in the data.frame.

我知道这对大多数人来说应该很容易,但是我还是有点菜鸟,尽管R仍然不动,但几个小时后我无法正确绘制剧情.任何帮助深表感谢.

I know this should be easy for most, but I'm sort of noob with R still and after hours I can't get the plot right. Any help is much appreciated.

我遇到的一些错误:

> hist(AcceptData$Sentence.Type,AcceptData$Mean.Rank)
Error in hist.default(AcceptData$Sentence.Type, AcceptData$Mean.Rank) : 
  'x' must be numeric

或者:(这不会产生错误,但绝对不是我想要的图形.它的所有x值都局限在x轴的左侧)

Or: (this doesn't give an error, but definitely not the graph I want. It has all the x values cramped to the left of the x axis)

  plot(AcceptData$Sentence.Type,AcceptData$Mean.Rank,lty=5,lwd=2,xlim=c(1,16),ylim=c(1,4),xla b="Sentence Type",ylab="Mean Ranking",main="Mean Acceptability Ranking per Sentence")

推荐答案

默认的plot函数具有允许您在x轴上绘制因子的方法,但是要使用此方法,您必须转换文本数据到factor:

The default plot function has a method that allows you to plot factors on the x-axis, but to use this, you have to convert your text data to a factor:

这里是一个例子:

x <- letters[1:5]
y <- runif(5, 0, 5)

plot(factor(x), y)

以及您的示例数据:

AcceptData <- read.table(text="
Mean.Rank Sentence.Type
1       2.5       An+Sp+a
2       2.6      An+Nsp+a
3       2.1       An+Sp-a
4       3.1      An+Nsp-a
5       2.4       In+Sp+a
6       1.7      In+Nsp+a
7       3.1       In+Sp-a
8       3.0      In+Nsp-a", stringsAsFactors=FALSE)

plot(Mean.Rank~factor(Sentence.Type), AcceptData, las=2, 
     xlab="", main="Mean Acceptability Ranking per Sentence")

这篇关于相对于R中的数字向量绘制字符向量的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆