[Numpy-discussion] nan result from np.linalg.lstsq()

eat e.antero.tammi at gmail.com
Mon Oct 29 05:12:35 EDT 2012


Hi,

On Mon, Oct 29, 2012 at 11:01 AM, Larry Paltrow <larry.paltrow at gmail.com>wrote:

> np.isnan(data) is True
> >>> False
>
Check with:
np.all(~np.isnan(x))

My 2 cents,
-eat

>
>
> On Mon, Oct 29, 2012 at 1:50 AM, Pauli Virtanen <pav at iki.fi> wrote:
>
>> Larry Paltrow <larry.paltrow <at> gmail.com> writes:
>> > I'm having some trouble using the linalg.lstsq() function
>> > with certain data and trying to understand why. It's
>> > always returning nans when I feed it this numpy array of float64 data:
>> >
>> > data = df.close.values #coming from a pandas dataframe
>> >
>> > type(data)
>> > >>> numpy.ndarray
>>
>> Maybe you have NaNs in the array? (i.e. np.isnan(data) is True)
>>
>> --
>> Pauli Virtanen
>>
>>
>> _______________________________________________
>> NumPy-Discussion mailing list
>> NumPy-Discussion at scipy.org
>> http://mail.scipy.org/mailman/listinfo/numpy-discussion
>>
>
>
> _______________________________________________
> NumPy-Discussion mailing list
> NumPy-Discussion at scipy.org
> http://mail.scipy.org/mailman/listinfo/numpy-discussion
>
>
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://mail.python.org/pipermail/numpy-discussion/attachments/20121029/b0ff9419/attachment.html>


More information about the NumPy-Discussion mailing list