Would someone know how to conduct some type of visualisation within a cluster in R (i.e. plot histogram/frequency of a certain variable within a cluster)?
For example, suppose my partitioning around medoids output was summarised as follows:
pam_results$the_summary
Would anyone know a set a commands which would help plot a histogram for something like 'MR' from cluster 1?
What package are you using? A quick look at CRAN Task View: Cluster Analysis & Finite Mixture Models
suggests that there are ~107 packages that do something resembling clustering.
I would recommend using str(pam_results) and looking for the labels of clustering on the data. Then you can left join the labels to your data and conduct your analysis/visualization.