I’m working with a data set that’s got mix of integers & strings on the x axis and plotly express is only graphing the integers.
The FrameSize column has the following data in it [‘70’, ‘128’, ‘1000’, ‘1400’, ‘1500’, ‘iMix’]. It seems that the Pandas dataframe is saving the intigers as floats so I’m changing them to strings with the following.
fs_df.loc[:, ‘FrameSize2’] = fs_df[‘FrameSize’].astype(int, errors=‘ignore’).astype(str)
However, when I graph this I’m still only getting the numerical values with no iMix column.