This message was deleted.
# ask-anything
s
This message was deleted.
i
Can you please add the error? Did you try using the interact module?
Are you using the pipeline.yaml api?
e
yes, please share the error
j
sure yeah!
Copy code
---------------------------------------------------------------------------
NotImplementedError                       Traceback (most recent call last)
<ipython-input-5-828509ada065> in <cell line: 1>()
----> 1 dag['model-run-adultsVsChildren-child'].debug()

~/opt/anaconda3/envs/wordsense_pipeline/lib/python3.8/site-packages/ploomber/tasks/notebook.py in debug(self, kind)
    382         """
    383         if self.source.language != 'python':
--> 384             raise NotImplementedError(
    385                 'debug is not implemented for "{}" '
    386                 'notebooks, only python is supported'.format(

NotImplementedError: debug is not implemented for "r" notebooks, only python is supported
e
ah. yeah we have not implemented debugging for R. My recommendation would be to manually inject cells:
Copy code
ploomber nb -i
then grab that R script and use R debugging tools. Not an expert on R debugging but this seems like a great resource: https://adv-r.hadley.nz/debugging.html thanks for reporting this, I think we should add a section in the docs explaining how to debug R scripts and add the link to it in that error message 🙂
FYI: I created an issue. feel free to share your feedback! https://github.com/ploomber/ploomber/issues/852