this might be a silly question but my brain is just stuck. I have a dataset with the variables country (6), Relationship themes (10), and cultural dimensions (6)
in the picture you can see the first 4 relationship themes/levels, the other variables/sub-categories follow further to the right. I already transmuted the table etc. for some small tests where I defined the subcategories for one of them to test on the other, for the basic table it looked like this
COUNTRY <- subset(df_full, (Country == "GER" | Country == "CH" | Country == "UK"| Country == "US"| Country == "IN"| Country == "JP"))
for one transmuted one:
THEMES <- subset(df_theme, (Theme == "Bel_Insp" | Theme == "Emb_Real" | Theme == "Excitement"| Theme == "Good_Deed"| Theme == "New_Real"| Theme == "New_Rel"| Theme == "Rel_Resc"| Theme == "Rel_Togeth"| Theme == "Rel_Warmth"| Theme == "Transf_Reb"))
But what I really want is to be able to combine all 3 categorical variables, being able to use each of them as a grouping factor or such, within one table. My brain just can't visualize it atm.
So I want to have country as a variable with 6 levels, relationship themes as a variable with 10 levels, and cultural dimensions as a variable with 6 levels; represented in one table so I can do histograms that show their relationship, for example.
Since the data is super small I doubt anything beyond correlations etc. makes sense to test, but it would be the goal to figure out the relationship of the frequency of relationship themes with the cultural dimensions.
I hope this makes sense somehow and thanks in advance!