Data Forensic Solution with Python
基礎(basic)
import numpy as np import matplotlib.pyplot as plt fig, ax1 = plt.subplots() t = np.arange(0.01, 10.0, 0.01) s1 = np.exp(t) ax2 = ax1.twinx(...
>>> import numpy as np >>> import matplotlib.pyplot as plt >>> x = np.random.rand(100) >>> y = np.ran...