On Tue, 28 Apr 2009 14:41:02 +0300 Talha Yalta <talhayalta(a)gmail.com>
wrote:
TY> As an example: Suppose one wants to plot money supply against a
TY> price index. Bacause of the causality, it would make sense to have
TY> M1 as the first variable and CPI as the second variable listed in
TY> the legend but this may not be possible if CPI comes first in the
TY> varaibles list. Best regards
I don't get your problem. If you want M1 on the y axis you do
plot(M1~CPI) and if you want CPI you do it with plot(CPI~M1). If the
data are in a dataframe named mydata: plot(CPI~M1,data=mydata)
So what is it what you want?
Stefan