Pivot_longer 错误(由于类别不同而无法合并)
我想绘制带有以下数据集的条形图。 x轴是“输入”类型和'rtype'
df <- read.table(text = " Input Rtype Rcost Rsolutions Btime Bcost
1 12-proc. typea 36 614425 40 36
2 15-proc. typeb 51 534037 50 51
3 18-proc typec 62 1843820 66 66
4 20-proc typea 68 1645581 104400 73
5 20-proc(l) typeb 64 1658509 14400 65
6 21-proc typec 78 3923623 453600 82",
header = TRUE,sep = "")
dfm <- pivot_longer(df, -Input, names_to="variable", values_to="value")
但是,我得到此错误:错误:无法组合输入
&lt; factor&gt;和rtype
。
请建议,谢谢!
I want to plot a bar graph with the following dataset.
With the X-axis being the 'Input' types and 'Rtype'
df <- read.table(text = " Input Rtype Rcost Rsolutions Btime Bcost
1 12-proc. typea 36 614425 40 36
2 15-proc. typeb 51 534037 50 51
3 18-proc typec 62 1843820 66 66
4 20-proc typea 68 1645581 104400 73
5 20-proc(l) typeb 64 1658509 14400 65
6 21-proc typec 78 3923623 453600 82",
header = TRUE,sep = "")
dfm <- pivot_longer(df, -Input, names_to="variable", values_to="value")
However, i get this error: Error: Can't combine Input
<factor> and Rtype
.
Please advise, thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
也许这会有所帮助:
由 reprex 软件包于 2022 年 4 月 4 日创建 (v2.0.1)
Perhaps this will help:
Created on 2022-04-04 by the reprex package (v2.0.1)