Kertas Semilog Pdf May 2026

It sounds like you’re asking me to of semi-log paper (graph paper with one logarithmic axis and one linear axis).

import matplotlib.pyplot as plt import numpy as np fig, ax = plt.subplots(figsize=(8.27, 11.69)) # A4 size x = np.linspace(0, 10, 50) for i in range(0, 11): ax.axvline(x=i, color='lightgray', linestyle='-', linewidth=0.5)

plt.title('Semi-Log Paper') plt.savefig('semilog_paper.pdf', dpi=300) plt.show()