我使用的是ubuntu 14.04.2 LTS。我的R版本是3.0.2。 当我使用以下命令安装包“gplots”
时sudo -i
R
install.packages("gplots")
我收到一条警告消息:包'gplots'不可用(对于R版本3.0.2。)有什么建议吗?感谢。
答案 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;
}
}