Main public logs
From Master of Neuroscience Wiki
Combined display of all available logs of Master of Neuroscience Wiki. You can narrow down the view by selecting a log type, the username (case-sensitive), or the affected page (also case-sensitive).
- 14:36, 17 October 2025 Davrot talk contribs created page Subplots and gridspec: A more flexible placement (Created page with " = subplots and gridspec = {:.no_toc} <nav class="toc-class"> * TOC {:toc} </nav> == Top == Questions to [mailto:davrot@uni-bremen.de David Rotermund] == Example 1 (2d regular grid) == '''subplots with s at the end!!!'''<syntaxhighlight lang="python">import numpy as np import matplotlib.pylab as plt rng = np.random.default_rng() a = rng.random((100, 100)) fig, axs = plt.subplots(nrows=3, ncols=3) print(axs.shape) # -> (3, 3) for x in range(0, axs.shape[0]):...") Tag: Visual edit