Lists the Memory Information for the Current Machine
mem_info()A data.frame (tibble) with the two columns field and value.
For most CPUs, there will be duplicated field:s.
This function reads/queries /proc/meminfo on the current machine.
info <- mem_info()
print(info)
#> # A tibble: 55 × 2
#> field value
#> <chr> <dbl>
#> 1 memtotal 16374252000
#> 2 memfree 10923508000
#> 3 memavailable 15167692000
#> 4 buffers 123928000
#> 5 cached 4311768000
#> 6 swapcached 0
#> 7 active 870796000
#> 8 inactive 3992652000
#> 9 active(anon) 485828000
#> 10 inactive(anon) 0
#> # ℹ 45 more rows