Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,6 +145,16 @@ You can pass either series or lists to it:
mountains = Explorer.DataFrame.new(name: ["Everest", "K2", "Aconcagua"], elevation: [8848, 8611, 6962])
```

Even a list of maps:

```elixir
mountains = Explorer.DataFrame.new([
%{"name" => "Everest", "elevation" => 8848},
%{"name" => "K2", "elevation" => 8611},
%{"name" => "Aconcagua", "elevation" => 6962}
])
```

Your dataframe is going to look like this:

```
Expand Down