Shians / Glimma

Glimma R package
GNU Lesser General Public License v3.0
50 stars 10 forks source link

bug fix for removing bad data #143

Closed jdrnevich closed 7 years ago

jdrnevich commented 7 years ago

glMDSPlot.default checks for any non-finite data and attempts to remove rows with any non-finite values. However, the code was missing a comma in the subsetting brackets, turning the data matrix into a numeric vector. was: x <- x[!bad, drop = FALSE] now: x <- x[!bad, , drop=FALSE]

Shians commented 7 years ago

Thanks Jenny!