I'm pretty new to Python/data in general and I'm having a hard time wrapping my head around this
I currently have 3 data frames which look like this
| A | B | C | Type | | 1 | 2 | 6 | Worst | | 3 | 4 | 5 | Worst | | A | B | C | Type | | 1 | 2 | 3 | Medium | | A | B | C | Type | | 1 | 5 | 20 | Worst| I'm trying to create a grouped boxplot in which each A from the 3 types gets a boxplot and are grouped together, the same goes for B and C
I'm unsure of how to join all these data frames together so that I can send them into the seaborn catplot function. There doesn't seem to be much documentation on how to set up the data.

concatto combine them. pandas.pydata.org/pandas-docs/stable/reference/api/…