Changue颜色取决于R中的因素

时间:2016-10-29 10:28:27

标签: r

我有这个数据框

'use strict';

var myBlog = angular.module('myBlog');

myBlog.config(function() {
   // anything u want
});

我正在密谋:

wine <-read.table("http://archive.ics.uci.edu/ml/machine-learning-databases/wine/wine.data",sep=",")

> head(wine,2)
  V1    V2   V3   V4   V5  V6   V7   V8   V9  V10  V11  V12  V13
1  1 14.23 1.71 2.43 15.6 127 2.80 3.06 0.28 2.29 5.64 1.04 3.92
2  1 13.20 1.78 2.14 11.2 100 2.65 2.76 0.26 1.28 4.38 1.05 3.40
   V14
1 1065
2 1050

我希望图形中出现的标签的每个因素都使用不同的颜色,我该怎么办?

1 个答案:

答案 0 :(得分:0)

我们可以试试这个

plot(V2 ~ V5, data=wine, cex=0.6, col=sample(colours(), 3)[V1])

enter image description here