I would like to have uneven point sizes in matplotlib (set the size for each point). Is there any way to do this? I think I could hack it with a separate plot command (with a set of markers) for each point, but that would be very unpleasant. Is there a more fundamental way?
I just found out that you can use scatter for this:
scatter
scatter(500:600,600:700,1:101);
where format: scatter(x,y,sizes,markerType)
scatter(x,y,sizes,markerType)
It produces:
Source: https://habr.com/ru/post/898860/More articles:What are the new features of ADO.NET 2.0? - asp.netPass the resulting object to a method requiring a superclass using java reflection? - javaUsing next () x the number of times with jQuery - javascriptHow to implement an enumerator in Ruby? - ruby | fooobar.comRotate UIView on the X axis (horizontal axis) - iosHow to make CATransform3dMakeRotation rotate the other way? And combine - iosIs there an iOS notification if UIAlertView is displayed? - iosHow to insert a Bean with EJB 3.1 before starting the class constructor? - javaCan I get a message when I show UIAlertView - iphoneHow to implement IEnumerable in my Dictionary wrapper class that implements IEnumerable ? - c #All Articles