Cudf: What to use place of masked_assign? [QST]

Created on 18 Aug 2019  路  2Comments  路  Source: rapidsai/cudf

What is your question?

  • masked_assign was taken out of series.py a few days ago in branch-0.9 merge

    • what should be used in its place?

Thanks

? - Needs Triage question

Most helpful comment

Thanks for reporting. Setting values by mask can now be done with loc (same as Pandas'):

sr.loc[mask] = value

All 2 comments

Thanks for reporting. Setting values by mask can now be done with loc (same as Pandas'):

sr.loc[mask] = value

This works, thank you.

Was this page helpful?
0 / 5 - 0 ratings