Answers for "how to refer to all columns in pandas"

0

how to refer to all columns in pandas

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

#to get info of all columns
data = df[:]
Posted by: Guest on April-01-2021

Code answers related to "how to refer to all columns in pandas"

Python Answers by Framework

Browse Popular Code Answers by Language