October 2018
Beginner to intermediate
676 pages
18h 30m
English
The following block of code along with comments helps you to understand the process of changing and resetting default environment variables:
import matplotlib.pyplot as plt
x, y = np.loadtxt ('test.csv', unpack = True, usecols = (0,1), delimiter = ',')
matplotlib.rc('lines', linewidth=4, linestyle='-', marker='*')
matplotlib.rcParams['lines.markersize'] = 20matplotlib.rcParams['font.size'] = '15.0'
plt.plot(x,y)
Read now
Unlock full access