
scatter ( range ( 8 ), range ( 8 ), marker = x圓, s = s3 ** 2 * sizes, facecolor = 'red' ) ax. scatter ( range ( 8 ), range ( 8 ), marker = xy2, s = s2 ** 2 * sizes, facecolor = 'green' ) ax. scatter ( range ( 8 ), range ( 8 ), marker = xy1, s = s1 ** 2 * sizes, facecolor = 'blue' ) ax. array () # calculate the points of the first pie marker # these are just the origin (0, 0) + some (cos, sin) points on a circle x1 = np. # Defining the ratios for radius of pie chart markers r1 = 0.2 # 20% r2 = r1 + 0.2 # 40% r3 = r2 + 0.4 # 80% # define some sizes of the scatter marker sizes = np. The function returns a plot with desired axes and other parameters.
Pyplot scatter Patch#
With ‘none’, No patch boundary will be drawn. With ‘face’, the edge color will always be same as face color. edgecolors : or Color or Color Sequence – The edge color of the marker is set with this parameter.

lindwidths : Float or array-like, default: 1.5 – The linewidth of marker is set using this parameter.alpha : Float, default: None – It’s a blending value where the range is between 0(transparent) and 1(opaque).vmin, vmax : Float, default: None – When norm is given these parameters aren’t used, but otherwise they help in mapping of color array c to colormap cmap.norm : Normalize, default: None – It helps in normalization of color data for the c.cmap : str or Colormap, default: ‘viridis’ – Used when we provide c an array of floats.marker : MarkerStyle – For setting the marker style, this parameter comes handy.c : Array-like or List of Color or Color – This specifies the color of the marker.s : Float or array-like, shape(n,) – This parameter specifies the size of the marker.

x,y : Float or array-like, shape(n,) – These are the two sets of values provided to the scatter function for plotting.
