这个R interpolated polar contour plot问题是R中插值极坐标图的绝佳来源。不幸的是,如this question所述,earlier post中的PolarImageInterpolate
函数存在一些错误在里面。我的问题是,是否有功能的修改版本或包或其他任何方法(ggpot?)来在R中进行插值极坐标图?
这是我使用PolarImageInterpolate
函数制作的示例图。中心有不同寻常的价值。插值似乎有问题吗?由于akima
插值不允许NA中的数据,因此我使用complete.cases
删除了它们。有没有更好的选择来管理插值中的NA?
inp <- read_csv("test.csv")
inp <- inp[complete.cases(inp),]
y = inp$Height * cos(inp$Theta)
x = inp$Height * sin(inp$Theta)
z = inp$Value
PolarImageInterpolate(x, y, z, points = F)
数据为here 任何帮助将不胜感激。