合并数据+统计流数
Posted soyosuyang
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了合并数据+统计流数相关的知识,希望对你有一定的参考价值。
#!/bin/bash for file in *.txt;do echo $file done for file in *.txt;do { cat $file >>all.txt } done line=$(cat all.txt|sed -n ‘$=‘) cat all.txt >>all${line}个流.txt
以上是关于合并数据+统计流数的主要内容,如果未能解决你的问题,请参考以下文章
pandas GroupBy上的方法apply:一般性的“拆分-应用-合并”