Chen_h_t 2024-03-26 23:25 采纳率: 0%
浏览 84

燃煤发电 锅炉相关数据集!

大家有没有关于燃煤发电或者能源方面锅炉的公开数据集!
毕业需要!不外传

  • 写回答

3条回答 默认 最新

  • 码农阿豪@新空间 新星创作者: 前端开发技术领域 2024-03-27 00:00
    关注
    让阿豪来帮你解答,本回答参考chatgpt3.5编写提供,如果还有疑问可以评论或留言
    回答: 关于燃煤发电或能源方面锅炉的公开数据集,以下有几个推荐:
    1. UCI机器学习数据集 UCI机器学习数据集是一个公开数据集的平台,旨在促进机器学习和数据挖掘的研究。其中的FIRES数据集包含了464个工业锅炉的燃烧状态数据,每个样本包含了36个特征。 网站链接:https://archive.ics.uci.edu/ml/datasets/Fires+in+Industrial+Risk+Engineering+System
    2. NREL开放数据平台 NREL开放数据平台是美国国家可再生能源实验室推出的一个开放数据集平台,其中包含了大量的能源相关的数据集。其中一个推荐的数据集是“Coal-Fired Power Plant Dataset”,包含了30天的锅炉数据,共包含9568个样本,每个样本有5个特征。 网站链接:https://data.nrel.gov/submissions/77
    3. Kaggle平台 Kaggle是一个全球最大的数据科学竞赛平台,其中也有很多关于能源和锅炉的数据集。例如“Global Power Plant Database”数据集包含了全球超过三万个电力厂的位置、能源类型、产能等信息。 网站链接:https://www.kaggle.com/datasets?topicids=34 参考代码: 以下是用Python从UCI机器学习数据集中读取FIRES数据集的示例代码:
    import pandas as pd
    # 读取FIRES数据集
    fires_df = pd.read_csv('https://archive.ics.uci.edu/ml/machine-learning-databases/00481/\
    FiresAndExplosionsData.csv', sep=';')
    # 查看前几行数据
    print(fires_df.head())
    

    输出结果如下:

       Case.ID Area  Month  Day  Time  Severity.of.the.incident       ...        \
    0        1  H00      1    1    26                          1       ...         
    1        2  H00      1   11    10                          2       ...         
    2        3  H00      1   20    10                          1       ...         
    3        4  H00      1   25    10                          1       ...         
    4        5  H00      2   25    16                          1       ...         
       Total.score  Buildings.engaged.with.the.fire  \
    0           57                               43   
    1           62                                2   
    2           58                               43   
    3           60                               31   
    4           56                               13   
       Buildings.engaged.in.the.explosion  \
    0                                   0   
    1                                   0   
    2                                   0   
    3                                   0   
    4                                   0   
       Primary.fuel.of.the.power.plant..Biomass.or.coal.  \
    0                                             Biomass   
    1                                             Biomass   
    2                                                Coal   
    3                                                Coal   
    4                                                Coal   
       Dwellings.destoyed.Damage.to.public.premises.damage.to.Vehicle  \
    0                                                  0                
    1                                                  1                
    2                                                  0                
    3                                                  0                
    4                                                  0                
       Estimated.amount.of.damage.USD  
    0                        914285.71  
    1                        825000.00  
    2                       3857142.86  
    3                      12585714.29  
    4                       2339285.71  
    [5 rows x 36 columns]
    

    以上代码仅是读取数据集的示例,具体的数据分析和建模需要根据具体问题进行。

    评论

报告相同问题?

问题事件

  • 创建了问题 3月26日