英文: converting sf multipolygon to sp 问题 我有一个包含多边形的sf对象,我需要将其转换为sp对象。似乎使用sf转换函数无法正常工作。 我尝试过以下方法: libr...
光谱数据平滑使用SNV和MSC
英文: Spectral data smoothing using SNV and MSC 问题 我正在尝试过滤高光谱数据。我有204个光谱波段。我尝试使用以下代码对标准正态变量 (SNV) 和多重散...
编写一个手动的BFS搜索算法
英文: Writing a BFS Search Algorithm by Hand 问题 我正在尝试了解有关网络图的搜索算法。为了说明这一点,我创建了以下示例。 步骤1: 假设有100个国家(cou...
如何从数组中删除NAs
英文: How to remove NAs in an array 问题 考虑我们有一个数组: tmp <- array(c(1, 2, 3, 4, NA, NA, NA, NA, 5,...
快速在R中按年份拆分数据框。
英文: Quickly split a dataframe by year in R 问题 我有一个看起来像这样的面板 country <- c("A"...
使用R中的数组进行矩阵切片
英文: Matrix Slicing with Array in R 问题 考虑以下的2D数组: A = 1 2 3 4 5 6 7 8 9 给定一组与列对应的索引,例如,i = [0, 2],我想要...
如何将两个ggplot2自定义函数合并,使图例分开。
英文: How can I combine two ggplot2 custom functions makig the legend separate 问题 我有两个自定义函数: plt_regre...
R: 在JSON中识别地理坐标
英文: R: Recognizing Geographical Coordinates within JSON 问题 我正在使用R编程语言。 我的问题: 我试图自己重新创建这张地图(例如在leafle...
如何在R中使箭头动画化
英文: How to make the arrows animate in R 问题 如何使箭头从一端移动到另一端。我想表示能量流动。 plot <- ggplot(combined_total...
“Error in as.double(x)…”以及在创建总结和图形函数时出现的其他错误消息
英文: "Error in as.double(x)..." and other error message while creating a function to summar...
298