Is there a way to see what happens inside the function from the library or a package in R? I want to get an in-depth look at what happens inside the code. the function that I want to see is trimcluster http://www.homepages.ucl.ac.uk/~ucakche/
Asked
Active
Viewed 24 times
1
-
You'd probably be best off searching the package name on github and viewing the source. – SmokeyShakers Aug 04 '21 at 11:39
-
thank you very much, i dont know about that before – Bagoes Heikhal Aug 04 '21 at 11:41
-
If your IDE has a debugger you can use `debugonce(trimcluster)` and then click through each step of the function and also jump into other functions that are being called. – TimTeaFan Aug 04 '21 at 12:54