
- Python scatter plot multiple color legend how to#
- Python scatter plot multiple color legend install#
If you just want the first two features, you can use sns. (Seaborn also has the iris dataset available as a labeled DataFrame) import seaborn as sns Once you have data in a Pandas Dataframe, you can use Seaborn pairplot to make this sort of plot.
Python scatter plot multiple color legend how to#
This is a similar question to Scatter plots in Pandas/Pyplot: How to plot by categoryĪ way to accomplish your goal is to use pandas with labeled columns. If your larger goal is to just make plotting and labeling categorical data more straightforward, you should consider Seaborn. The matplotlib scatter example that addresses this problem also uses a loop, so that is probably the intended usage: I know I can manually generate a legend, but again that seems overly cumbersome. All of the examples I've come across iterate over the groups, which seems.less than ideal. I can achieve a similar looking plot without iterating over each group though: f, ax = plt.subplots(1)Īx.scatter(feats, feats, c=np.array())īut I cannot figure out a way to generate a corresponding legend with this second strategy. So, for example, a scatter plot with groups colored can be generated by iterating over the groups and plotting each separately: import matplotlib.pyplot as plt However, this seems to not support generating a legend without specifically plotting each group separately. fig, ax = plt.subplots(figsize=(11, 4))Īx.scatter(data=df, x='Date', y='High', c=df.Date.dt.month, cmap='Set3')Īx.set(title='c parameter as a month number', xlabel='Date', ylabel='High')Ĭ as a datetime dtype ax = df.plot(kind='scatter', x='Date', y='High', c='Date', cmap='winter', figsize=(11, 4), title='c parameter as a datetime dtype')Īx.scatter(data=df, x='Date', y='High', c='Date', cmap='winter')Īx.Pyplot.scatter allows for passing to c= an array that corresponds to groups, which will then color the points based on those groups. df.Date.dt.month creates a pandas.Series of month numbersĪx = df.plot(kind='scatter', x='Date', y='High', c=df.Date.dt.month, cmap='Set3', figsize=(11, 4), title='c parameter as a month number').
Python scatter plot multiple color legend install#



#ideal situation with pandas dataframe, 'df', where colors are chosen by col3 Ggplot(data = df, aes(x=col1, y=col2, color=col3)) + geom_point()

I'm wondering if there are there any convenience functions that people use to map colors to values using pandas dataframes and Matplotlib? #ggplot scatterplot example with R dataframe, `df`, colored by col3 I can quickly make a scatterplot and apply color associated with a specific column and I would love to be able to do this with python/pandas/matplotlib. One of my favorite aspects of using the ggplot2 library in R is the ability to easily specify aesthetics.
