pascalabcnet/InstallerSamples/MachineLearning/08_Datasets/MoscowHousing/02_PriceHistogram.pas

14 lines
335 B
ObjectPascal
Raw Permalink 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.