# multiple line plots
plot(monthz, avgTempLondon,'r:o')
hold on # tells the graph to keep the prior plots
plot(month, avgTempRio, 'b-*')

# mixed plot types
bar(month, maxTempLondon,'yellow')
hold on
plot(monthz, avgTempLondon,'red')