forked from extern/nushell
c0a1d18e3d
* feat: update #4455, regenerate commands' docs * chore: update make_docs script
34 lines
522 B
Markdown
34 lines
522 B
Markdown
---
|
|
title: dfr to-df
|
|
layout: command
|
|
version: 0.59.0
|
|
---
|
|
|
|
Converts a List, Table or Dictionary into a dataframe
|
|
|
|
## Signature
|
|
|
|
```> dfr to-df ```
|
|
|
|
## Examples
|
|
|
|
Takes a dictionary and creates a dataframe
|
|
```shell
|
|
> [[a b];[1 2] [3 4]] | dfr to-df
|
|
```
|
|
|
|
Takes a list of tables and creates a dataframe
|
|
```shell
|
|
> [[1 2 a] [3 4 b] [5 6 c]] | dfr to-df
|
|
```
|
|
|
|
Takes a list and creates a dataframe
|
|
```shell
|
|
> [a b c] | dfr to-df
|
|
```
|
|
|
|
Takes a list of booleans and creates a dataframe
|
|
```shell
|
|
> [$true $true $false] | dfr to-df
|
|
```
|