I have a data set containing names of Solar Panel arrays, their dates of completion and location (long/lat).
I created an rplot with the time of completion on the x axis and the names of each array on the y axis. Here in lies the problem - the actual names are not displayed but the number designation for each row is. Is there a way to get the names listed on the y axis instead of the numbers? ![Names are supposed to show on the y axis, the years show up fine on the x axis]
Heres the code I used to make my rplot:
plot(solar$Year.completed, solar$Name, xlim=c(1990, 2025))
I am also considering making adding more granularity (if that's even a word to the x axis)
Thanks to whomever can help with this.
Here is what the plot looks like: