learn-co-students / nonlinear-derivatives-readme-data-science-intro-000

Other
0 stars 1.21k forks source link

traces in calculus.py contain errors #3

Open ktzioumis opened 5 years ago

ktzioumis commented 5 years ago

function_values_trace and derviative_values_trace contain mode='line' mode cannot equal 'line', mode should equal 'lines' the S has been dropped and it causes errors it cannot be rectified in the jupyter notebook for the lesson because theese functions to not accept an input argument to set mode

annieeby commented 5 years ago

i fixed line to lines in my calculus.py file and it still doesn't work

ktzioumis commented 5 years ago

Heres what worked for me:

create two new code cells at the top of the note book. copy and paste the entire contents of text from calculus.py and graph.py correct every instance of mode ='line' to mode = 'lines' in all following code cells delete any lines that import a function form calculus or graph ( these functions have already been defined with corrections in the code cells you created at the top of the notebook)