spc
spc copied to clipboard
Trouble getting .render() to work
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 = [56, 75, 82, 12, 34, 18, 22, 81, 88, 91, 76, 85, 100, 88, 43, 44] print(widgets) c = SpcChart(widgets, title="Nice Graph") c.render()
[56, 75, 82, 12, 34, 18, 22, 81, 88, 91, 76, 85, 100, 88, 43, 44]
AttributeError Traceback (most recent call last)
AttributeError: 'SpcChart' object has no attribute 'render'
Any thoughts? Sorry if it's something that I am doing work. Thank you; I am hoping to use your module to make some control charts for our local crime lab.