mirror of https://github.com/phonopy/phonopy.git
19 lines
379 B
Python
19 lines
379 B
Python
"""Script to plot unfolding result."""
|
|
|
|
import sys
|
|
|
|
import matplotlib.pyplot as plt
|
|
import numpy as np
|
|
|
|
if len(sys.argv) > 1:
|
|
filename = sys.argv[1]
|
|
else:
|
|
filename = "bin-unfolding.dat"
|
|
|
|
x, y, z = np.loadtxt(filename).T
|
|
idx = z.argsort()
|
|
x, y, z = x[idx], y[idx], z[idx]
|
|
sc = plt.scatter(x, y, c=z, s=30, vmin=0, edgecolor=None, cmap="Greys")
|
|
plt.colorbar(sc)
|
|
plt.show()
|