densityScatterChart

Version 1.1 (1,53 MB) von Dave B
A scatter where the color (and/or transparency) of the markers indicates the density of points.
982 Downloads
Aktualisiert 6 Okt 2023

densityScatterChart

View densityScatterChart on File Exchange Open in MATLAB Online

Version: 1.1

Density Scatter Chart is a scatter where the color (and/or transparency) of the markers indicates the density of points.

Example densityScatterChart

How to use:

x=randn(1000,1);
y=randn(1000,1)
densityScatterChart(x,y);   % create a chart where color varies with density

%% You can set properties using name value pairs
% Create a chart where transparency varies with density:
densityScatterChart(x, y, 'UseColor', false, 'UseAlpha', true);

% Specify a title:
densityScatterChart(x, y, "Title", "My density scatter chart");

%% You can also set properties after making the chart:
d=densityScatterChart(x, y);

% Make a steeper density view
d.DensityExponent = 2;

% Use alpha, but make it a subtle effect by using a small range:
d.AlphaRange = [.2 .8];

Zitieren als

Dave B (2024). densityScatterChart (https://github.com/MATLAB-Graphics-and-App-Building/densityScatterChart/releases/tag/v1.1), GitHub. Abgerufen .

Kompatibilität der MATLAB-Version
Erstellt mit R2021a
Kompatibel mit R2020b und späteren Versionen
Plattform-Kompatibilität
Windows macOS Linux

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!
Version Veröffentlicht Versionshinweise
1.1

See release notes for this release on GitHub: https://github.com/MATLAB-Graphics-and-App-Building/densityScatterChart/releases/tag/v1.1

1.0

Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.
Um Probleme in diesem GitHub Add-On anzuzeigen oder zu melden, besuchen Sie das GitHub Repository.