I'm unable to define period 1 month 5 months 1 year 5 year in a variable so that i can plot a trend line for each fund
EQUITY FUNDS 1 M 6 M 1 Y 3 Y 5 Y
Axis Bluechip Fund 4.00% 5.50% 14.30% 16.70% 15.70%
t<- c("4","5.50","24.30","26.70","15.70")
z<- c("Axis Bluechip Fund - D (G)")
plot(t,z, type="l", col="green", lwd=5, xlab="Period wise Return",
ylab="Fund Name")
lines(t, z, col="red", lwd=2)