spc icon indicating copy to clipboard operation
spc copied to clipboard

Process Control charts for Humans

Results 2 spc issues
Sort by recently updated
recently updated
newest added

Present in https://launchpad.net/python-spc/+milestone/0.3: ``` python def get_chart(self, ax=None): """Generate chart using matplotlib.""" if not mpl_present: raise Exception("matplotlib not installed") if ax == None: ax = pylab ax.plot(self._data, "bo-") ax.plot([0, len(self._data)],...

EDIT: I see that it is now render_to_file() instead of render() I'm trying your demo here but getting this: import sys sys.path.append('/Library/Python/2.7/site-packages/') import spcchart ​ from spcchart import SpcChart widgets...