For example, I have a txt file consist of data as below. I read this txt file using read.table("C/".../file.txt")
I would like to just plot the value row by row into a line using R. I just want to see how each row of data looks like. This is a GPS coordinate data where V1 and V3 are the latitude and V2 and V4 are longitude.
V1 V2 V3 V4
39.9847 116.3184 39.98468 116.3184
39.9847 116.3184 39.98468 116.3184
39.98469 116.3184 39.9845 116.3137
39.98462 116.3143 39.98364 116.2993
Thank you.