Reputation: 1439
I have four dataframes (say A,B,C and D). The data in each dataframe is of the format given below. But each dataframe is of a different length.
lon lat area fd tp rt
-85.40944 41.88833 274.5387 1.100000e+02 50.00000000 60.0000000
-85.40944 41.88833 274.5387 1.140000e+02 31.00000000 83.0000000
-85.40944 41.88833 274.5387 6.040000e+02 76.00000000 528.0000000
-85.40944 41.88833 274.5387 1.000000e+00 1.00000000 0.0000000
-85.40944 41.88833 274.5387 3.340000e+02 32.00000000 302.0000000
I want to extract (for example) FD columns and the LON columns from four dataframes. And after that plot something like this, but instead of one blob, it will be four blobs of Lon v/s FD figures.
Questions:
Upvotes: 0
Views: 164