Adjust SciView's Plots resolution/dpi Follow Amin Sadeghi Created June 03, 2020 02:50 The default resolution of plots in SciView is sub-optimal and blurry. Is there a way to up the resolution/dpi?
Upon further inspection, actually there's nothing wrong with the SciView Plots panel. I just had to define a larger figure size explicitly for instance via:
```
import matplotlib.pyplot as plt
fig, ax = plt.subplots(figsize=(10, 10))
ax.plot(x, y)
```
For information only:
The size of the plots can also be changed globally for a whole script: