R Use profvis Package for Better System Monitoring

By |2018-08-31T12:33:03-04:00August 31st, 2018|Categories: Note笔记|Tags: , , , |

Here is an interesting package called 'profvis' that I recently get to know about. It is quite useful when you are trying to locate the place where takes the longest time when running the code. Below is an official example. #R system monitoring install.packages('profvis') library(profvis) # To run code with profiling, wrap the expression in profvis(). [...]