I have a dataframe, df1 as shown below:
Observed PeakFlow (cfs) Modelled Peak Flow (cfs)
9.78768 10.93963
1.999368 2.037152
11.63652 8.541796
3.237471 3.970588
54.04929 22.94427
4.68197 3.139319
16.41346 12.17337
14.97399 7.224458
2.114172 5.775542
22.80021 22.69659
25.3347 13.0805
33.4092 11.3452
13.81051 7.640867
6.794793 4.26161
9.008561 6.634675
5.957804 4.176471
2.337406 2.071208
32.6419 4.368421
3.567871 2.894737
5.776844 3.0387
39.54993 5.849845
4.511765 2.28483
6.989101 3.218266
14.63979 9.024768
I also have another dataframe, df2 as shown below:
1-1 Match | -15% Peak Flow | +25% Peak Flow
-----------------------------------------------------
X-Axis| Y-Axis | X-Axis| Y-Axis | X-Axis| Y-Axis
-----------------------------------------------------
0 | 0 | 0 | 0 | 0 | 0
200 | 200 | 200 | 170 | 200 | 250
I would like to have a scatterplot of these 2 dataframes. Desired output is as shown in the image below. How can it be possibly done?
When i load df2 as csv i'm getting like shown in image below. How can i remove the unnamed part and have it as a merged column as shown in code?



