cuDF compatibilty with Plotly Express

Hello,

I’ve been messing around with cuDF and I’ve been wanting plot data from a cuDF dataframe using Plotly. However, when I pass the dataframe and x and y names I get the following error.

ValueError: Value of 'x' is not the name of a column in 'data_frame'. Expected one of [0] but received: a

However if I convert the cuDF object to a pandas df then then px call works

I’m guessing I can’t pass a cuDF dataframe directly to a px object ??

Thanks !