- 説明:
この古典的なデータセットには、53940 個のダイヤモンドの物理的属性と価格が含まれています。
属性:
- price: 米ドルでの価格。
- カラット:ダイヤモンドの重さ。
- cut: カット品質 (最悪から最高)。
- color: ダイヤモンドの色 (最高から最低の順)。
- クラリティ: ダイヤモンドのクラリティ (最低から最高の順)。
- x: 長さ (mm)。
- y: 幅 (mm)。
- z: 深さ (mm)。
- depth: 深さの合計パーセンテージ: 100 * z / mean(x, y)
表: 最も広い点に対するダイヤモンドの上部の幅。
ホームページ: https://ggplot2.tidyverse.org/reference/diamonds.html
ソース コード:
tfds.structured.diamonds.Diamonds
バージョン:
-
1.0.0
(デフォルト): 初期リリース。
-
ダウンロードサイズ:
2.64 MiB
データセットサイズ:
13.01 MiB
自動キャッシュ(ドキュメント): はい
スプリット:
スプリット | 例 |
---|---|
'train' | 53,940 |
- 機能構造:
FeaturesDict({
'features': FeaturesDict({
'carat': float32,
'clarity': ClassLabel(shape=(), dtype=int64, num_classes=8),
'color': ClassLabel(shape=(), dtype=int64, num_classes=7),
'cut': ClassLabel(shape=(), dtype=int64, num_classes=5),
'depth': float32,
'table': float32,
'x': float32,
'y': float32,
'z': float32,
}),
'price': float32,
})
- 機能のドキュメント:
特徴 | クラス | 形 | Dtype | 説明 |
---|---|---|---|---|
特徴辞書 | ||||
特徴 | 特徴辞書 | |||
特徴/カラット | テンソル | float32 | ||
特徴/明瞭さ | クラスラベル | int64 | ||
特徴・色 | クラスラベル | int64 | ||
特徴/カット | クラスラベル | int64 | ||
機能/深さ | テンソル | float32 | ||
特徴/表 | テンソル | float32 | ||
機能/x | テンソル | float32 | ||
特徴/年 | テンソル | float32 | ||
機能/z | テンソル | float32 | ||
価格 | テンソル | float32 |
監視キー(
as_supervised
docを参照):('features', 'price')
図( tfds.show_examples ): サポートされていません。
例( tfds.as_dataframe ):
- 引用:
@Book{,
author = {Hadley Wickham},
title = {ggplot2: Elegant Graphics for Data Analysis},
publisher = {Springer-Verlag New York},
year = {2016},
isbn = {978-3-319-24277-4},
url = {https://ggplot2.tidyverse.org},
}