pascalabcnet/InstallerSamples/MachineLearning/08_Datasets/MoscowHousing/02_PriceHistogram.pas
2026-03-31 12:38:47 +03:00

13 lines
330 B
ObjectPascal
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

uses MLABC, PlotML;
begin
var ds := Datasets.MoscowHousing;
var df := ds.Data;
var price := df.ToVector(ds.Target);
Plot.Hist(price, bins := 40);
Plot.Title := 'Распределение цен на квартиры в Москве';
Plot.XLabel('Цена (руб)');
Plot.YLabel('Количество');
end.