本教程的操作环境:windows7系统,Python 3.9.1,DELL G3电脑。
Sample函数python中的python
1、在Pandas中进行数据分析,可以随机选择多个行或列,提取列表;
2、函数参数包括:frac、replace、weights、random_state和axis。
函数作用:
随机选择几行或列。
函数用法:
DataFrame.sample(n=None,frac=None,replace=False,weights=None,random_state=None,axis=None)
函数参数:
frac、replace、weights、random_state、axis
实例演示:
随机抽取5行。
sample1=df.sample(n=5) sample1
输出结果:
在这里,您还可以自己将其带入需要提取的列表,并参考代码进行调用。然后,接下来,应用代码并尝试它~