I'm a very beginner to R. So I have 2 data files, A.dat and B.dat like:
1 101203
2 3231233
3 213213
...
So I did
A <- read.table("A.dat", col.names = c("time","power"))
B <- read.table("B.dat", col.names = c("time","power"))
And I want to do line plot for A and B in the same system (Sorry, i can't upload image yet). Any suggestions on how to go about?