Scatterplot tool: Fitted Line Option not working

Issue #213 resolved
Fabian Thiel created an issue

See image (lower part)

scatterplot_fit.png

Comments (2)

  1. Andreas Janz

    Ohhh, numpy behaviour changed quite badly. Having a 2d array with only one element:

    >>> np.atleast_2d(0)
    array([[0]])
    

    Casting it two float will remove the dimensions :-(((((

    >>> np.float64(np.atleast_2d(0))
    0.0
    

    @jakimowb be aware of this!

  2. Log in to comment