I am using the corner
library to make a corner plot. However, when I set the axes_scale
parameter to log
, nothing changes. I know that I can put everything in log scale before plotting, but I would prefer to do it inside corner.
import numpy as np
import matplotlib.pyplot as plt
import corner
# Generate data
n_samples = 10000
n_parameters = 3
samples = np.random.randn(n_samples, n_parameters)
# Generate the corner plot
fig = corner.corner(samples,
axes_scale=['log','linear','log'],
show_titles=True)
plt.show()
Nothing changes even with axes_scale='log'
.
Any help is appreciated.