缩写R中的变量

时间:2012-09-02 01:31:31

标签: r plot

我正在使用名为Forbes2000的数据集,该数据集由HSAUR包提供。我能够绘制数据但不能用相应的国家名称缩写每个点。这是我尝试过的代码:

Forbes2000top50ccompanies <- head(Forbes2000[order(Forbes2000$profits, decreasing= T),], n = 50)
plot(sales ~ assets,data=Forbes2000top50ccompanies)

1 个答案:

答案 0 :(得分:1)

这将为您提供国家/地区名称的前4个字母的标签,并使其小于默认值:

with(Forbes2000top50ccompanies, 
         text(x=assets, y=sales, 
              labels=substr(Forbes2000top50ccompanies$country, 1, 4), cex=0.6) )