Whenever I run this code , the first plot would simply overwrite the previous one. Isnt there a way in R to separate to get two plots ?
plot(pc) title(main=
You could also try the layout command:
Try layout(1:2)
layout(1:2)
plot(A) plot(B)