将 ftable(列联表)转换为 R 中的数据帧
我正在生成一个ftable(通过在xtabs命令的结果上运行ftable)并且我得到以下内容。
Var1 Var2
date group
2007-01-01 q1 1 9
q2 2 8
q3 3 7
2007-01-02 q1 6 6
q2 7 5
q3 8 4
我知道它是一个可ftable 类,但我想存储如下。我想知道在R中是否有任何有效的方法可以做到这一点?
date group Var1 Var2
2007-01-01 q1 1 9
2007-01-01 q2 2 8
2007-01-01 q3 3 7
2007-01-02 q1 6 6
2007-01-02 q2 7 5
2007-01-02 q3 8 4
I am generating an ftable (by running ftable on the results of a xtabs command) and I am getting the following.
Var1 Var2
date group
2007-01-01 q1 1 9
q2 2 8
q3 3 7
2007-01-02 q1 6 6
q2 7 5
q3 8 4
I understand that it is a ftable class but I'd like to store is as the following. I am wondering if there is any efficient way of doing it in R?
date group Var1 Var2
2007-01-01 q1 1 9
2007-01-01 q2 2 8
2007-01-01 q3 3 7
2007-01-02 q1 6 6
2007-01-02 q2 7 5
2007-01-02 q3 8 4
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
你可以通过以下方式完成这项工作:
you can do that work by:
我知道这个问题很老了,但如果它对某人有帮助:
I know this question is old, but in case it helps someone: