美文网首页
python 处理连续几个数的小demo

python 处理连续几个数的小demo

作者: 丙吉 | 来源:发表于2020-08-15 21:47 被阅读0次

    选出数据框中的满足条件的连续的子数据框:

    def select_continue(df, threshold):

    if df.shape[0]==0:

    return pd.DataFrame()

    else:

    df['time_group'] = df['time'].cumsum()

    相关文章

      网友评论

          本文标题:python 处理连续几个数的小demo

          本文链接:https://www.haomeiwen.com/subject/ykkzdktx.html