We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Given:
val df = listOf( Triple(1, 10, 0.1), Triple(2, 20, 0.2) ).toDataFrame() .rename("first" to "id", "second" to "df_count", "third" to "df_ratio")
This
df.rename( "df_ratio" to "ratio_df", "df_count" to "count_df" )
Should be id, count_df, ratio_df, but now is id, ratio_df, count_df, so columns are assigned a new name in the order they occur in the dataframe
id, count_df, ratio_df
id, ratio_df, count_df
The text was updated successfully, but these errors were encountered:
AndreiKingsley
Successfully merging a pull request may close this issue.
Given:
This
Should be
id, count_df, ratio_df
, but now isid, ratio_df, count_df
, so columns are assigned a new name in the order they occur in the dataframeThe text was updated successfully, but these errors were encountered: