Log scale
Is there a way to use logarithmic scale for Y?
Was also looking for this. Figured out a way to do this with a few changes to [matplotlibcpp.h], basically just copying the same things as what is done for [axis] and it works well. Add [ PyObject *s_python_function_yscale; ] to the struct [ struct _interpreter ] (around line 70). Add [ s_python_function_yscale = safe_import(pymod, "yscale"); ] to _interpreter() (around line 200). Then copy the function [ inline void axis(const std::string &) ] and make the name of the new function to be [yscale] and thats it. You can now use it by calling plt::yscale("log");. The same procedure works for [xscale].
You could simply use semilogy, a thin wrapper around plot which additionally changes y-axis to log scaling:

I am also looking for log log capabilities. Are there any features similar to matplotlib.pyplot's plt.xscale and plt.yscale?
@colramos-amd is loglog(x, y) what you are looking for?