Output from 'choice' in R's kml

冷暖自知 提交于 2019-12-06 14:49:46

The new version of kml (2.3) fix that, it provide a key to export data with linux as well (not "return" since getGraphicsEvent does not accept "return" using linux, so I have to map another key : 'm')

Christophe

Alexandra Oliveira

I had the same problem when using RStudio and i solved it just opening the x11 device with no specification. Like this:

setwd("/Users/eightfrench")

mydata <- read.csv("hcris_long3.csv")

cldHCRIS <- clusterLongData(traj=mydata)

kml(cldHCRIS,nbClusters=2:4,nbRedrawing=2,toPlot="both")

X11()

choice(cldHCRIS, typeGraph= "bmp")

Hope this also works for you.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!