web-dev-qa-db-ja.com

Spark DataFrameの暗黙の$

sqlContext.implicits._親データフレームの列へのデータフレーム呼び出しを表す$ "string"を定義していますか?具体的には、私は次のようなものを見て混乱しました。

import sqlContext.implicits._
df.where($"type".isin("type1","type2") and $"status".isin("completed","inprogress"))
14
noname

次のリンクが表示された場合

クラスSQLContext.implicits $ .StringToColumn

$ "col name"を列に変換します。

こちらが最新版のリンクです

25
user2844511