包'gplots'不适用于R版本3.0.2

时间:2015-04-24 15:39:13

标签: r package gplots

我使用的是ubuntu 14.04.2 LTS。我的R版本是3.0.2。 当我使用以下命令安装包“gplots”

sudo -i
R
install.packages("gplots")

我收到一条警告消息:包'gplots'不可用(对于R版本3.0.2。)有什么建议吗?感谢。

1 个答案:

答案 0 :(得分:0)

您可以尝试从github cran repo安装gpots。

- (IBAction)handleRotateSymbols:(UIRotationGestureRecognizer *)sender {
    CGFloat netRotation = 0.0;
    CGFloat rotation = [(UIRotationGestureRecognizer *) sender rotation];
    CGAffineTransform transform = CGAffineTransformMakeRotation (rotation + netRotation);
    sender.view.transform = transform;

    if (sender.state == UIGestureRecognizerStateEnded){
        netRotation += rotation;
    }
}