-
Notifications
You must be signed in to change notification settings - Fork 794
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Not possible to tab complete mark_*()
methods in chains
#143
Comments
Question, [which is totally not for v1.0] why:
and not:
That would make it much easier to create a reuse a chart:
then |
You can actually set the data as an attribute later: c = Chart()
...
c.data = data However, because the charts are mutable, you would have to do something like: deepcopy(c).data = data1
deepcopy(c).data = data2 That would be needed even if data were a method too. |
Yes I've seen that, but then you can't assign the chart to a variable at the same time, as |
Yeah, although most of the API is attribute based (through traitlets). We On Sat, Jul 9, 2016 at 8:36 PM, Matthias Bussonnier <
Brian E. Granger |
When we use the syntax:
It isn't possible to tab complete the
mark_
unless you are using the non-default Greedy tab completion in IPython. Maybe we should just create the chart asc = Chart(data)
? in our tutorial examples?From @Carreau in #140
The text was updated successfully, but these errors were encountered: