I'm doing a project on outlier detection, and as one of the methods for gaining an understanding of my dataset I'm using boxplots to visualize how the data points lie in regard to all the data points for that specific feature. However, when I use the seaborn module to plot it, it gives me a boxplot that doesn't make sense in my head. All datapoints lie outside the whiskers, with none of them inside?
The code is very simple:
def boxplot(): df = pd.read_csv('csv-data/test.csv') sns.boxplot(x='11', data=df) plt.show() I thought maybe the whiskers were the problem, so I tried to increase the length just to test it, and this is the result: 
As can be seen, the points simply just follow along with the whiskers. I'm not sure why this is happening, and I know for a fact that there should be points inside the whiskers because I have a point like "0.0768012746931151" for feature 11.
