You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@spark.apache.org by "Xiangrui Meng (JIRA)" <ji...@apache.org> on 2016/01/18 21:50:39 UTC

[jira] [Updated] (SPARK-12346) GLM summary crashes with NoSuchElementException if attributes are missing names

     [ https://issues.apache.org/jira/browse/SPARK-12346?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel ]

Xiangrui Meng updated SPARK-12346:
----------------------------------
    Target Version/s: 2.0.0

> GLM summary crashes with NoSuchElementException if attributes are missing names
> -------------------------------------------------------------------------------
>
>                 Key: SPARK-12346
>                 URL: https://issues.apache.org/jira/browse/SPARK-12346
>             Project: Spark
>          Issue Type: Bug
>          Components: SparkR
>            Reporter: Eric Liang
>            Assignee: Eric Liang
>
> In getModelFeatures() of SparkRWrappers.scala, we call _.name.get on all the feature column attributes. This fails when the attribute name is not defined.
> One way of reproducing this is to perform glm() in R with a vector-type input feature that lacks ML attrs, then trying to call summary() on it, for example:
> {code}
> df <- sql(sqlContext, "SELECT * FROM testData")
> df2 <- withColumnRenamed(df, "f1", "f2") // This drops the ML attrs from f1
> lrModel <- glm(hours_per_week ~ f2, data = df2, family = "gaussian")
> summary(lrModel) // NoSuchElementException
> {code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscribe@spark.apache.org
For additional commands, e-mail: issues-help@spark.apache.org