Sparklyr - Change columns names in a Spark dataframe

前提是你 提交于 2019-12-29 08:06:07

问题


df <- data.frame(old1 = LETTERS, old2 = 1)
df_tbl <- copy_to(sc,df,"df")

df_tbl <- df_tbl %>% dplyr::rename(old1 = new1, old2 = new2)

returns:

> head(df_tbl)
Error: `new1`, `new2` contains unknown variables

Is there an easy way to change the column names using Sparklyr?


回答1:


First of all you mixed the order:

df_tbl %>% rename(new1 = old1, new2 = old2)

but with Sparklyr you have to use select:

df_tbl %>% select(new1 = old1, new2 = old2)


来源:https://stackoverflow.com/questions/45514906/sparklyr-change-columns-names-in-a-spark-dataframe

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!