是否有用于内插极坐标图的R包

时间:2019-04-12 17:37:04

标签: r interpolation contour r-package polar-coordinates

这个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)

sample plot

数据为here 任何帮助将不胜感激。

0 个答案:

没有答案