I think what you're trying to get at is going to require switching from the 'qplot' function to the 'ggplot' function. Including the graphing functions inside your 'ddply' function is not going to be very pretty, and vice versa. You're better leaving them separate, so I'm going to just focus on combining the graphs. There are two good (in my opinion) ways to do this:
Option 1: Just do both plots as separate geometries on the same 'ggplot' object. This isn't two hard to do, and works like this:
ggplot(group) + geom_point(aes(x=id, y=income.mean), colour="red") + geom_point(aes(x=id, y=expend.mean), colour="blue")
This is a fast option and gets the job done with minimal computation. However, it requires that you specify a new geometry for each column. In your sample data, this isn't an issue, but in many cases, you want to do this with code, instead of doing it by hand.
Option 2: Reshape your data to combine both sets inside of one plot. Then, we can specify groupings by coloring by the variable
library(reshape2)
plot_Data <- melt(group, id="id")
# Output of plot_Data
# id variable value
# 1 1 income.mean 6849.650
# 2 2 income.mean 12765.400
# 3 3 income.mean 6425.917
# 4 1 expend.mean 579.400
# 5 2 expend.mean 1285.350
# 6 3 expend.mean 1626.000
ggplot(plot_Data, aes(x=id, y=value, col=variable)) + geom_point()

The disadvantage of this method is that we are doing a lot more computation, so large complicated data frames may become slow to process. However, the advantage (and this is huge) is that we don't have to know what columns existed in the data frame we are plotting. Everything is sorted, colored, and plotted without our intervention, so we can use this flexibly for just about anything.
You should be able to adjust from here to suit your needs.
stat_summary, it is usually better to do your summaries outside of ggplot like you did originally. Keeping to two steps separate is often much clearer, and less bug prone. – joran Feb 5 at 15:41