On Pandas, I have created 3 results dataframes ( df1, df2, df3) and I would like to create a bar chart to display the sum of unique values in a specific column for each data frame.
In the Y- i would like to see the sum of unique values ( most likely would need value_counts()) in the x - df1, df2, df3 ( the categories)
Any suggestion please?
df1 [represents data in system 1] = {Process, Activity, UniqueIDs, Data Field name} df2 [represents data in system 2]= {Process, Activity, UniqueIDs, Data Field name} df3 [represents data in system 3]= {Process, Activity, UniqueIDs, Data Field name}
What I would like to plot is a grouped bar chart with the X representing the system type, and the y- the sum of unique IDs for the specific system