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: 58 × 2
#> field value
#> <chr> <dbl>
#> 1 memtotal 16373448000
#> 2 memfree 10658876000
#> 3 memavailable 14983508000
#> 4 buffers 133016000
#> 5 cached 4383208000
#> 6 swapcached 0
#> 7 active 872592000
#> 8 inactive 4090432000
#> 9 active(anon) 505108000
#> 10 inactive(anon) 0
#> # ℹ 48 more rows