The following table is necessary for this dataset to be indexed by search engines such as Google Dataset Search.
| property | value |
|---|
| import pandas as pd | |
| from collections import namedtuple | |
| class Employee(NamedTuple): | |
| name: str | |
| id: int | |
| employees = [] | |
| next_employee = some_api_query("first") | |
| while next_employee: |
| import pandas as pd | |
| from collections import namedtuple | |
| Employee = namedtuple("Employee", "name, id") | |
| employees = [] | |
| next_employee = some_api_query("first") | |
| while next_employee: | |
| employees.append(Employee(name=next_employee.first_name + " " + next_employee.last_name, | |
| id=next_employee.id)) |
The following table is necessary for this dataset to be indexed by search engines such as Google Dataset Search.
| property | value |
|---|
| ## Dataset Metadata | |
| The following table is necessary for this dataset to be indexed by search | |
| engines such as <a href="https://g.co/datasetsearch">Google Dataset Search</a>. | |
| <div itemscope itemtype="http://schema.org/Dataset"> | |
| <table> | |
| <tr> | |
| <th>property</th> | |
| <th>value</th> | |
| </tr> | |
| <tr> |
| ## Dataset Metadata | |
| The following table is necessary for this dataset to be indexed by search | |
| engines such as <a href="https://g.co/datasetsearch">Google Dataset Search</a>. | |
| <div itemscope itemtype="http://schema.org/Dataset"> | |
| <table> | |
| <tr> | |
| <th>property</th> | |
| <th>value</th> | |
| </tr> | |
| <tr> |