

- PYTHON SCATTER PLOT WITH COLORS HOW TO
- PYTHON SCATTER PLOT WITH COLORS FULL
- PYTHON SCATTER PLOT WITH COLORS CODE
PYTHON SCATTER PLOT WITH COLORS HOW TO
And here we’ll learn how to color scatter plot depending upon different conditions.
PYTHON SCATTER PLOT WITH COLORS CODE
:( I do hope someone can shed light on this for me! I'm positive my code is not that great, so please don't worry about offending in anyway when it comes to my code!!Įxtra bag of firey-hot cheetos to anyone who can suggest a way forward. What is important however: datapoints that you'll recognize as the same between plots do not contain the same color as should be the case based on the vmin vmax use above (as Tom's code suggests). Please note that this is not the perfect output for my work, but I didn't expend effort making it perfect.

Plt.scatter(rf85growthTarray, rf85CuSearray, rf85PFarray, rf85CurrentsArray, vmin=Datavmin, vmax=Datavmax, alpha=0.75) Plt.scatter(growthTarray, CuSearray, PFarray, CurrentsArray, vmin=Datavmin, vmax=Datavmax, alpha=0.75) Rf85growthTarray = )] PFarray = )]
PYTHON SCATTER PLOT WITH COLORS FULL
This is the 85 watts compared to the full dataset that's current input (there's more data, but this is what I have for now).

I'm basically slicing and dicing the data in various ways to try and see a trend.

In the below, rf85 is a subset of the arrays for the large batch of experiments where the RF power applied to the system was approximately 85 watts forward. The input came by way of the h5py functions (hdf5 data file import). It doesn't appear to work for my data!! Below is modified code that can be used with my data to produce a plot which wasn't working for me for some strange reason. The results of my coding altering Tom's code above. Ok, this isn't really an answer-but a follow-up.
