![]() |
How to compare different UV spectrum profiles - Printable Version +- Python Forum (https://python-forum.io) +-- Forum: Python Coding (https://python-forum.io/forum-7.html) +--- Forum: General Coding Help (https://python-forum.io/forum-8.html) +--- Thread: How to compare different UV spectrum profiles (/thread-15377.html) |
How to compare different UV spectrum profiles - SriRajesh - Jan-15-2019 Hi, Due to large data, I could not upload here. I have standard curve and different process variation curves of UV spectrum profiles, and I want to correlate and analyze difference between standard curve and other curves. Is there any technique in python(or sklearn) to analyze such kind of data. RE: How to compare different UV spectrum profiles - Larz60+ - Jan-15-2019 I think you're lookinf for multiple subplots in matplotlib see: https://matplotlib.org/gallery/subplots_axes_and_figures/subplot.html#sphx-glr-gallery-subplots-axes-and-figures-subplot-py this shows two similar (sine wave) plots, but I think you can mix different types RE: How to compare different UV spectrum profiles - SriRajesh - Jan-19-2019 I want to compare two spectrum profiles, not subplots. |