File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change @@ -47,10 +47,9 @@ runNMF()
4747```
4848
4949Enter your name (or any name that you recognize) so you can see how your runtime
50- compares to other approaches later.
51-
52- You will realize that it throws an error. Try to spot and correct it. You can get
53- get a quick overview of the context with ` traceback() ` .
50+ compares to other approaches later. You will realize that the script throws an
51+ error. Try to spot and correct it. You can get get a quick overview of the context
52+ with ` traceback() ` .
5453
5554** Using the debugger**
5655
@@ -60,8 +59,8 @@ case, you will want to call
6059
6160``` splus
6261options(error = recover ) # if there is an error, don't just quit
63- debug(nmfconsensus ) # use the debugger for this function
64- runNMF()
62+ debug(nmfconsensus ) # use the debugger for the "nmfconsensus" function
63+ runNMF() # run the code again
6564```
6665
6766It will show the chunk of code that is about to be executed. Within the debugger,
You can’t perform that action at this time.
0 commit comments