Run ❯
Get your
own Python
server
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
import pandas fileurl = 'https://archive.ics.uci.edu/ml/machine-learning-databases/iris/iris.data' names = ['septal_length','sepal_with','petal_length','pedal_width','class'] data = pandas.read_csv(fileurl, names=names) #Print the skew skew = data.skew() print(skew) #Positive skew values indicate a right skew, while negative values indicate a left skew. Values close to zero have less skew.
sepal_length
0.314911
sepal_width
0.334053
petal_length
-0.274464
petal_width
-0.104997
dtype: float64