python 来自Pandas DataFrame的示例(来自http://stackoverflow.com/questions/15923826/random-row-selection-in-p

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了python 来自Pandas DataFrame的示例(来自http://stackoverflow.com/questions/15923826/random-row-selection-in-p相关的知识,希望对你有一定的参考价值。

import pandas

df = pandas.DataFrame(data)

# Randomly sample 70% of your dataframe
df_0.7 = df.sample(frac=0.7)

# Randomly sample 7 elements from your dataframe
df_7 = df.sample(n=7)

以上是关于python 来自Pandas DataFrame的示例(来自http://stackoverflow.com/questions/15923826/random-row-selection-in-p的主要内容,如果未能解决你的问题,请参考以下文章

Python-requests POST JSON 格式的文本字符串,使用来自 Pandas DataFrame 的数据,循环通过 DataFrame 记录

来自pandas dataframe python的barh图中行的不同颜色

python 来自Pandas DataFrame的示例(来自http://stackoverflow.com/questions/15923826/random-row-selection-in-p

我需要从 pandas DataFrame 对象中创建一个 python 列表对象或任何对象,对来自不同行的值进行分组

python 使用“is in”切片Pandas DataFrame(来自http://stackoverflow.com/questions/12096252/use-a-list-of-value

Python Pandas Dataframe 到 CSV [重复]