sort output dataframe by price per sqm
This commit is contained in:
parent
47347543d2
commit
2741a77560
1 changed files with 2 additions and 1 deletions
|
|
@ -34,4 +34,5 @@ def export_to_csv(
|
|||
df4 = df3
|
||||
|
||||
df5 = df4[columns]
|
||||
df5.to_csv(str(output_file), index=False)
|
||||
df6 = df5.sort_values(by=['price_per_sqm'], ascending=True)
|
||||
df6.to_csv(str(output_file), index=False)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue