0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

matminerでマテリアルズインフォマティックス(1)

Posted at

マテリアルズインフォマティックスをやろうと思っても

matminer というライブラリーがあります。これは、マテリアルズインフォマティックスを行うためのデータセットを呼び出すことができるライブラリーです。
!pip install matminer で、ライブラリーをインストールします。

matminerから入手できるデータセットは

このマニュアルの中にあります。
一応Google先生に翻訳してもらった内容をコピペしておきます。

image.png

これらのデータは、The Materials ProjectやCitrinationなどから取り出されています。

データの呼び出し方

from matminer.datasets import load_dataset
#df = load_dataset("データの名前") 
df = load_dataset("steel_strength")

これで、データを呼び出すことができます・

0
0
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?