Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

sns.distplot is plotting negative values for a only positive variable

Hello, I'm trying to plot the distribution of a variable in Python using the sns.distplot function.

For example, I create variable x as a random variable, with only positive values.

import pandas as pd
x = np.random.random(100)

I then use the sns.distplot function and I get the following graph: enter image description here

As you'll be able to see, it looks like there are negative values (-0.25). I check if there are negative values by doing the following:

x < 0
>>> array([False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False,
   False, False, False, False, False, False, False, False, False, False],       dtype=bool)

I don't understand why x seems to have negative values in the plot. Does anyone knows why this is happening? I tried to look if I found more specifications about the sns.ditplot function, but I couldn't find anything that enlightened me.

Thank you!

like image 616
rebeca Avatar asked Apr 01 '26 01:04

rebeca


1 Answers

As you can see the plot only has values from zero. If you do not want to see the negative value in the plot you can set the xlim parameter.

import seaborn as sns
import numpy as np

x = np.random.random(100)
%matplotlib inline
sns.distplot(x).set(xlim=(0))

which gives

enter image description here

like image 108
Gayatri Avatar answered Apr 02 '26 22:04

Gayatri



Donate For Us

If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!