Github user jodersky commented on the pull request:

    https://github.com/apache/spark/pull/10337#issuecomment-165292856
  
    I'm running the code snippet from the original JIRA:
    ```scala
    import org.apache.spark.ml.feature.VectorAssembler
    val df = sc.parallelize(List((1,2), (3,4))).toDF
    val assembler = new VectorAssembler().setInputCols(Array("_1", 
"_2")).setOutputCol("features")
    assembler.transform(df).show
    ```
    in the spark shell spawned from the sbt `sparkShell` task


---
If your project is set up for it, you can reply to this email and have your
reply appear on GitHub as well. If your project does not have this feature
enabled and wishes so, or if the feature is enabled but not working, please
contact infrastructure at [email protected] or file a JIRA ticket
with INFRA.
---

---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to