- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我喜欢使用 dcast 函数(reshape2 包)来返回 reshape 数据框,但不起作用。在我的例子中:
#Data set
X<-c(804519.4,804519.6,804519.6,804519.4,804519.4,804519.4,804519.6,804519.6,804519.4,804519.4)
Y<-c(7673833,7673833,7673833,7673833,7673833,7673833,7673833,7673833,7673833,7673833)
band<-c("band1","band1","band1","band1","band1","band2","band2","band2","band2","band2")# My original data set are 31 bands
reflec<-c(9.608848,10.504454,8.648237,9.935091,11.282750,9.608848,10.504454,8.648237,9.935091,11.282750)
dummy<-1:10
RES3<-data.frame(X,Y,band,reflec,dummy)
RES3
X Y band reflec dummy
1 804519.4 7673833 band1 9.608848 1
2 804519.6 7673833 band1 10.504454 2
3 804519.6 7673833 band1 8.648237 3
4 804519.4 7673833 band1 9.935091 4
5 804519.4 7673833 band1 11.282750 5
6 804519.4 7673833 band2 9.608848 6
7 804519.6 7673833 band2 10.504454 7
8 804519.6 7673833 band2 8.648237 8
9 804519.4 7673833 band2 9.935091 9
10 804519.4 7673833 band2 11.282750 10
RES3<-as.data.frame(RES3)
colnames(RES3)<-c("X","Y","band","reflec","dummy")
dcast(RES3, X + Y + dummy ~ band,
fun.aggregate = length,
value.var="reflec")
不起作用,我的输出是:
X Y dummy band1 band2
1 804519.4 7673833 1 1 0
2 804519.4 7673833 4 1 0
3 804519.4 7673833 5 1 0
4 804519.4 7673833 6 0 1
5 804519.4 7673833 9 0 1
6 804519.4 7673833 10 0 1
7 804519.6 7673833 2 1 0
8 804519.6 7673833 3 1 0
9 804519.6 7673833 7 0 1
10 804519.6 7673833 8 0 1
我预计:
X Y band1 band2
1 804519.4 7673833 9.608848 9.608848
2 804519.6 7673833 10.504454 10.504454
3 804519.6 7673833 8.648237 8.648237
4 804519.4 7673833 9.935091 9.935091
5 804519.4 7673833 11.282750 11.282750
任何成员都可以帮助我,因为我的原始数据集是 31 个波段作为级别,我想按列进行转换?谢谢!
最佳答案
正如我提到的,reshape2
已 deprecated支持 tidyverse
包中的 tidyr
。在我看来(以及软件包作者的观点),tidyr
的 spread
和 gather
比 reshape2 更清晰一些
的 cast
和 melt
— 没有公式符号,指定值的方式更简洁。 (一些上下文是 here )。
正如我所提到的,您还有几行额外的代码 - data.frame
将根据进入其中的向量名称添加列名称。
我已更新此答案以匹配您发布的新数据。我的原始解决方案适用于您的原始数据,但需要更多步骤来处理您的新数据,这是我使用 dplyr
函数完成的。
此时我还没有完全获得dummy
列,因为它不在您的预期输出中。我用 dplyr::select(-dummy) 删除它。 tidyr::spread 的一个棘手问题是您需要某种方法来唯一地标记行——这很烦人,但也可以防止在 reshape 数据时出现错误。因此,我按 band
进行分组,然后添加行号,如下所示:
library(tidyr)
library(dplyr)
res3 <- data.frame(X, Y, band, reflec, dummy)
res3 %>%
select(-dummy) %>%
group_by(band) %>%
mutate(row = row_number())
#> # A tibble: 10 x 5
#> # Groups: band [2]
#> X Y band reflec row
#> <dbl> <dbl> <fct> <dbl> <int>
#> 1 804519. 7673833 band1 9.61 1
#> 2 804520. 7673833 band1 10.5 2
#> 3 804520. 7673833 band1 8.65 3
#> 4 804519. 7673833 band1 9.94 4
#> 5 804519. 7673833 band1 11.3 5
#> 6 804519. 7673833 band2 9.61 1
#> 7 804520. 7673833 band2 10.5 2
#> 8 804520. 7673833 band2 8.65 3
#> 9 804519. 7673833 band2 9.94 4
#> 10 804519. 7673833 band2 11.3 5
这样,第 1 行将具有带 1 值和带 2 值,依此类推。然后,我调用 spread
,将 band 作为成为列的键,并使用反射值来填充这些列,最后删除行号列。
res3 %>%
select(-dummy) %>%
group_by(band) %>%
mutate(row = row_number()) %>%
spread(key = band, value = reflec) %>%
select(-row)
#> # A tibble: 5 x 4
#> X Y band1 band2
#> <dbl> <dbl> <dbl> <dbl>
#> 1 804519. 7673833 9.61 9.61
#> 2 804519. 7673833 9.94 9.94
#> 3 804519. 7673833 11.3 11.3
#> 4 804520. 7673833 10.5 10.5
#> 5 804520. 7673833 8.65 8.65
由reprex package于2019年1月28日创建(v0.2.1)
关于使用虚拟变量使用 dcast 重新排列数据帧,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/54404099/
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: How to nest OR statements in JavaScript? 有没有办法做到这一点:
在 JavaScript 中有没有办法让一个变量总是等于一个变量?喜欢var1 = var2但是当var2更新,也是var1 . 例子 var var1 = document.getElementBy
我正在努力理解这代表什么 var1 = var2 == var3 我的猜测是这等同于: if (var2 == var3): var1 = var2 最佳答案 赋值 var1 = var2
这个问题已经有答案了: What does the PHP error message "Notice: Use of undefined constant" mean? (2 个回答) 已关闭 8
我在临时表中有几条记录,我想从每条记录中获取一个值并将其添加到一个变量中,例如 color | caption -------------------------------- re
如何将字符串转为变量(字符串变量--> $variable)? 或者用逗号分隔的变量列表然后转换为实际变量。 我有 2 个文件: 列名文件 行文件 我需要根据字符串匹配行文件中的整行,并根据列名文件命
我有一个我无法解决的基本 php 问题,我也想了解为什么! $upperValueCB = 10; $passNodeMatrixSource = 'CB'; $topValue= '$uppe
这可能吗? php $variable = $variable1 || $variable2? 如果 $variable1 为空则使用 $variable2 是否存在类似的东西? 最佳答案 PHP 5
在 Perl 5.20 中,for 循环似乎能够修改模块作用域的变量,但不能修改父作用域中的词法变量。 #!/usr/bin/env perl use strict; use warnings; ou
为什么这不起作用: var variable; variable = variable.concat(variable2); $('#lunk').append(variable) 我无法弄清楚这一点
根据我的理解,在32位机器上,指针的sizeof是32位(4字节),而在64位机器上,它是8字节。无论它们指向什么数据类型,它们都有固定的大小。我的计算机在 64 位上运行,但是当我打印包含 * 的大
例如: int a = 10; a += 1.5; 这运行得很完美,但是 a = a+1.5; 此作业表示类型不匹配:无法从 double 转换为 int。所以我的问题是:+= 运算符 和= 运算符
您好,我写了这个 MySQL 存储过程,但我一直收到这个语法错误 #1064 - You have an error in your SQL syntax; check the manual that
我试图在我的场景中显示特定的奖牌,这取决于你的高分是基于关卡的目标。 // Get Medal Colour if levelHighscore goalScore { sc
我必须维护相当古老的 Visual C++ 源代码的大型代码库。我发现代码如下: bIsOk = !!m_ptr->isOpen(some Parameters) bIsOk的数据类型是bool,is
我有一个从 MySQL 数据库中提取的动态产品列表。在 list 上有一个立即联系 按钮,我正在使用一个 jquery Modal 脚本,它会弹出一个表单。 我的问题是尝试将产品信息变量传递给该弹出窗
这个问题在这里已经有了答案: 关闭 10 年前。 Possible Duplicate: What is the difference between (type)value and type(va
jQuery Core Style Guidelines建议两种不同的方法来检查变量是否已定义。 全局变量:typeof variable === "undefined" 局部变量:variable
这个问题已经有答案了: 已关闭11 年前。 Possible Duplicate: “Variable” Variables in Javascript? 我想肯定有一种方法可以在 JavaScrip
在语句中使用多重赋值有什么优点或缺点吗?在简单的例子中 var1 = var2 = true; 赋值是从右到左的(我相信 C# 中的所有赋值都是如此,而且可能是 Java,尽管我没有检查后者)。但是,
我是一名优秀的程序员,十分优秀!