Skip to content

Commit e17f997

Browse files
committed
remove select
1 parent 48a1361 commit e17f997

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

examples/src/main/python/ml/imputer_example.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
imputer = Imputer(inputCols=["a", "b"], outputCols=["out_a", "out_b"])
4545
model = imputer.fit(df)
4646

47-
model.transform(df).select("a", "b", "out_a", "out_b").show()
47+
model.transform(df).show()
4848
# $example off$
4949

5050
spark.stop()

0 commit comments

Comments
 (0)