I am trying to plot a multiple line graph to represent a frequency table such that under the graph along the x-axis, it also gives me the actual values for each of the series in a table. For e.g.:
if there are 3 values to plot on x-axis - 1,2,3;
frequencies for series A are 1 - 2 times, 2 - 5 times, 3 - 7 times;
frequencies for series B are 1 - 7 times, 2 - 5 times, 3 - 3 times.
Then under the x-axis of the line graph, table is formed such that frequencies of both series are listed under each x-value.
While I can create multi-line graph using ggplot I am not sure how to add the table.
