Способы визуализации пропущенных данных
Код python: import matplotlib.pyplot as plt
import pandas as pd df = pd.read_excel('src/sales.xlsx')
df.info() // Out: 0 id_order 35554 non-null object
1 id_buyer 35554 non-null object
2 id_manager 35554 non-null object
3 id_good 35554 non-null object
4 unit 35554 non-null object
5 date 35554 non-null object
6 quantity 35520 non-null float64
7 amount 32230 non-null float64
8 cost_price 34287 non-null float64
9 costs 26139 non-null float64 import seaborn as sns plt.figure(figsize=(12, 8))
sns.heatmap(df...