rbartpackages.BART.ProcTime

class rbartpackages.BART.ProcTime(user_self: float, sys_self: float, elapsed: float, user_child: float, sys_child: float)[source]

Python representation of the output of R’s proc.time.

user_self: float

CPU seconds charged to the R process in user mode.

sys_self: float

CPU seconds charged to the R process in system (kernel) mode.

elapsed: float

Wall-clock seconds elapsed.

user_child: float

User-mode CPU seconds of forked child processes (mc.gbart workers).

sys_child: float

System-mode CPU seconds of forked child processes.