markdown 熊猫样本数据操作

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了markdown 熊猫样本数据操作相关的知识,希望对你有一定的参考价值。

Pandas is a Python library that allows you to manipulate data in multi-dimensional data structures

```python
import numpy as np
import pandas as pd

objs = [
    {
        'Name': 'Max',
        'Age': 24,
        'Location': 'Austin, TX'
    },
    {
        'Name': 'Drew',
        'Age': 35,
        'Location': 'Green Bay, WI'
    },
    {
        'Name': 'Bob',
        'Age': 55,
        'Location': 'Atlanta, GA'
    }
]

table = pd.DataFrame(objs)
```

The value of `table` in this context is the following:

| Age | Location      | Name  |
|-----|---------------|-------|
| 24  | Austin, TX    | Max   |
| 35  | Green Bay, WI | Drew  |
| 55  | Atlanta, GA   | Bob   |

以上是关于markdown 熊猫样本数据操作的主要内容,如果未能解决你的问题,请参考以下文章

读取熊猫数据框前几行的方法

如何在熊猫数据框中仅填充选定列的空值? [复制]

熊猫烧香分析报告

markdown 熊猫学习笔记

markdown 大熊猫の空の据帧にデータを追加する

如何按字符串过滤熊猫数据框?