
or color or sequence of color, optional. If None, defaults to rcParams (default: 1.5). Scalar or array-like, optional, default: None The alpha blending value, between 0 (transparent) and 1 (opaque). If None, the respective min and max of the color array is used. vmin and vmax are ignored if you pass a norm instance. Vmin and vmax are used in conjunction with norm to normalize luminance data. If None, use the default colors.Normalize. If None, defaults to rc image.cmap.Ī Normalize instance is used to scale luminance data to 0, 1. norm is only used if c is an array of floats.

See markers for more information about marker styles.Ī Colormap instance or registered colormap name. cmap is only used if c is an array of floats. Defaults to None, in which case it takes the value of rcParams (default: 'o') = 'o'. The marker style. marker can be either an instance of the class or the text shorthand for a particular marker. This cycle defaults to rcParams (default: cycler('color', )). In case those are not specified or None, the marker color is determined by the next color of the Axes' current "shape and fill" color cycle. In that case the marker color is determined by the value of color, facecolor or facecolors. Otherwise, value- matching will have precedence in case of a size matching with x and y.ĭefaults to None. If you want to specify the same RGB or RGBA value for all points, use a 2-D array with a single row. Note that c should not be a single numeric RGB or RGBA sequence because that is indistinguishable from an array of values to be colormapped.

Scatter Plots are an effective way of Data Visualisation in Python. It helps in finding the co-relation between the values and also help in identifying the outliers. Scatter Plot also known as scatter plots graph, scatter graphs, scatter chart, scatter diagram is used to show the relationship between two sets of values represented by a dot. We will use matplotlib.pyplot()’s plt.scatter() to create the scatter plot What is a Scatter Plot? In this tutorial we will learn to create a Scatter Plot in Python using Matplotlib and Pandas. Table of Contents Scatter Plot in Python using Pandas and Matplotlib
