📜  如何引用 pandas 中的所有列 - Python 代码示例

📅  最后修改于: 2022-03-11 14:46:01.184000             🧑  作者: Mango

代码示例1
#to refer to all columns at once like getting minimum of all columns  
data = df[:].min()

#to get info of all columns
data = df[:]