matplotlibでプロットしてillustratorで修正するために使いやすいプロット
markerの周りに四角い枠ができるのを無くしたいができない。
#!/usr/bin/env python import numpy as np import matplotlib import matplotlib.pyplot as plt matplotlib.rcParams['pdf.fonttype'] = 42 matplotlib.rcParams['ps.fonttype'] = 42 n = 20 x = np.random.rand(n) y = np.random.rand(n) fig = plt.figure() plt.plot(x, y, color='black', marker='.', markersize=10, fillstyle='full', linestyle='None', markeredgecolor='red', markeredgewidth=0.0) fig.savefig("plot.pdf")