plot - Plotting multiple barplots against months using Base R -


i need plotting temperature data each day of year. have data in dataset of following form:

weather(month, day, low, high, recordlow, recordhigh)

m d l  h  rl rh 1 1 44 60 35 72 1 2 32 63 31 76 ... 

month goes 1 12, , day goes 1 whatever last day of particular month is.

for each day (on x axis), want 2 bars, overlayed on each other, 1 extending low high , other extending recordlow recordhigh. don't know function of base r use (no ggplot) , how use it. want them drawn in same graph same axes.


Comments

Popular posts from this blog

jsf - "PropertyNotWritableException: Illegal Syntax for Set Operation" error when setting value in bean -

arrays - Algorithm to find ideal starting spot in a circle -

php - Autoloader issue not returning Class -