Is there a way to create and annotate a group scatter plot, without using the gscatter command?

3 次查看(过去 30 天)
I’m searching for a method to plot groups of data on a scatter plot. I thought I found a way on the MATLAB Documentation Center (small car example is very similar to what I’m hoping to do).
Unfortunately, my work center doesn’t have the Statistics Toolbox containing the gscatter command.
To make matters more interesting, the groups of data are dynamic, changing from one set to the next.
Does anyone aware of such a method in MATLAB?

采纳的回答

per isakson
per isakson 2013-5-16
编辑:per isakson 2013-5-16
"small car example" is this what you refer to?
load carsmall
gscatter(Weight,MPG,Model_Year,'','xos')
"annotate a group" I don't understand what you mean. gscatter does not have an annotate option, or does it?
When posing a question try to make it simple to answer.
.
Something similar to the carsmall plot can be created with
plot( x1, y1, ... )
hold on
plot( x2, y2, ... )
plot( x3, y3, ... )
legend( ..... )
The two subsequent plots might(?) change the range of the axes. My way of fixing that is
axh = gca;
set( axh, 'Xlim', [0,2] )
set( axh, 'Ylim', [0,2] )
However, there is a special command
xlim([xmin,xmax])
which operates on the current axes.
.
There is also a low level way:
  • create an axes (handle graphic ) object
  • create three line objects, which are children to the axes
  • ...

更多回答(1 个)

per isakson
per isakson 2013-5-15
Did you search the File Exchange? Generate Data for Clustering
  2 个评论
Brad
Brad 2013-5-16
Per, I did take a look at this. The data I am working with is already generated in groups based on a specific ID for multiple platforms. So Nuno's function won't quite work.
Looks like I will be spec'ing out the Statistics Toolbox.
Thanks for pointing me in this direction.
per isakson
per isakson 2013-5-16
编辑:per isakson 2013-5-16
IMO:
  • with Matlab one typically achieves a result with a code that contains several lines or more
  • the File Echange is a great source of ideas (and ready made solutions)
  • browsing the File Exchange is worth while
The contribution I picked does not deliver what the picture promises. However, there might be others.

请先登录,再进行评论。

类别

Help CenterFile Exchange 中查找有关 Graphics Object Programming 的更多信息

产品

Community Treasure Hunt

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

Start Hunting!

Translated by