简体   繁体   中英

Create a Dataframe from list of Dictionaries

Please help me creating a Dataframe from list of dictionaries

Dataset = [{'A': ' X1'}, {'B': ' Y1'}, {'A': ' X2'}, {'B': ' Y2'}, {'A': ' X3'}, {'B': ' Y3'}, {'C': ' Z3'}]

The output should be:

输出应该是:

you can use defaultdict and pandas' from_dict method. The trick is to use the orient parameter and transpose the dataframe in order to handle the missing values in the C column

def cast_to_dataframe(_ds):
    """
    Cast the given list of dictionaries to one dataframe

    :param _ds: List of dictionaries
    :return: DataFrame
    """

    final_dict = defaultdict(list)

    # Iterate through each dictionary in _ds
    for d in _ds:
        for key, value in d.items():
            final_dict[key].append(value)
    # Cast back to dict
    final_dict = dict(final_dict)
    df = pd.DataFrame.from_dict(final_dict, orient='index')

    return df.transpose()

dataset = [{'A': ' X1'}, {'B': ' Y1'}, {'A': ' X2'}, {'B': ' Y2'}, {'A': ' X3'}, {'B': ' Y3'}, {'C': ' Z3'}]

cast_to_dataframe(dataset)

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM