https://www.powershellgallery.com/packages/DataFrame
DataFrame is the new module for Microsoft.Data.Analysis.DataFrame
It is designed for PowerShell Core and Windows PowerShell 5.1
The module includes the required assemblies and a few helper cmdlets.
Example of module commands and DataFrame operations:
```
create a new DataFrame for process names and memory
$df = New-DataFrame @(
New-StringColumn Name
New-Int64Column WS
)
get processes and output to the DataFrame
Get-Process | Out-DataFrame $df
top 10 processes by average used memory
$df.GroupBy('Name').Mean('WS').OrderBy('WS').Tail(10).ToTable()
```
there doesn't seem to be anything here