欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

R(Kmeans绘制地形图)

程序员文章站 2022-03-26 11:31:17
...
setwd("your path")
library(R2SWF)
library(animation)

data<-read.csv("citycoordinate.csv")
# View(data)
x<-data$东经
# View(x)
y<-data$北纬

output = dev2swf({
  par(mar = c(3, 3, 1, 1.5), mgp = c(1.5, 0.5, 0))
  # par(x,y)
  kmeans.ani(x=cbind(x,y),centers = 4)
}, output = "test.swf")
swf2html(output)


R(Kmeans绘制地形图)
R(Kmeans绘制地形图)
数据

提取码:rqa8

相关标签: R