Pymatgen XRD Plot

1.3k Views Asked by At

I am following the XRD plot tutorial and as it told in this tutorial I imported

from pymatgen import Lattice, Structure
from pymatgen.analysis.diffraction.xrd import XRDCalculator
from IPython.display import Image, display
%matplotlib inline

And after defining the structure I try to plot it with these commands

c = XRDCalculator()
c.show_xrd_plot(structure)

But I bump into this error: 'no attribute 'show_xrd_plot'

AttributeError: 'XRDCalculator' object has no attribute 'show_xrd_plot'

What should I do to make it work, many thanks in advance, Happy Thanksgiving

1

There are 1 best solutions below

0
On

The XRD tutorial of pymatgen is updated and xrd_show_plot it changed to

c.show_plot(structure)