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()
47
47
```
48
48
49
49
Enter 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() ` .
54
53
55
54
** Using the debugger**
56
55
@@ -60,8 +59,8 @@ case, you will want to call
60
59
61
60
``` splus
62
61
options(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
65
64
```
66
65
67
66
It 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