Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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[:]
 
PREVIOUS NEXT
Tagged: #refer #columns #pandas
ADD COMMENT
Topic
Name
2+5 =