0
現在、rhelクラスタでRstudioを使用しています。 私は&がsparkデータフレームでdplyrを使用したフィルタ関数の型不一致エラー
sparklyr_0.5.4 dplyr sparklyr &次のバージョンがインストールされている糸クライアント上でスパーク2.0.2を使用します。 dplyr_0.5.0
私がチェックし
data = copy_to(sc, iris)
filter(data , Sepal_Length >5)
Error in filter(data, Sepal_Length > 5) :
(list) object cannot be coerced to type 'double'
エラーの次の行の結果についての簡単なテストは
head(data)
Source: query [6 x 5]
Database: spark connection master=yarn-client app=sparklyr local=FALSE
Sepal_Length Sepal_Width Petal_Length Petal_Width Species
<dbl> <dbl> <dbl> <dbl> <chr>
1 5.1 3.5 1.4 0.2 setosa
2 4.9 3.0 1.4 0.2 setosa
3 4.7 3.2 1.3 0.2 setosa
4 4.6 3.1 1.5 0.2 setosa
5 5.0 3.6 1.4 0.2 setosa
6 5.4 3.9 1.7 0.4 setosa
が知られている。この既知のバグ&ですべてが正常に見える&を読みますこれのための修正?
@jaimeCafferelこの作品は、ありがとう – Param