I have a data structure with 21 lists of numeric values which I wish to create a histo-graph for, but instead of bars I would like lines instead as it is easier to visualise for 21 series of data on one graph, and also without being a density, i.e I want the Y axis to still be frequency.
I have this R code below, but using type="l" or lines() does not seem to work
multhist(first_eigv,main="Amino Acid Residue Frequencies of First Eigenvector",breaks=11,ylab="Frequency",xlab="Eigenvalue",freq=TRUE,col=1:21)