Untitled
plain_text
2 months ago
366 B
14
Indexable
Never
real_estate_1 = real_estate[['last_price', 'living_area', 'total_area', 'kitchen_area', 'rooms', 'type_of_floor', 'day_of_published', 'month_of_published', 'year_of_published', 'price_for_meter']] for name, values in real_estate_1.iteritems(): real_estate_2 = real_estate_1[['last_price', values]] pd.plotting.scatter_matrix(real_estate_2, figsize=(9, 9))