NFT Top Collections (Timeseries)
Historical data of the top NFT collections
@kaggle.thedevastator_nft_top_collections
Historical data of the top NFT collections
@kaggle.thedevastator_nft_top_collections
Study how the price of the NFT top collections change over time.
### Data Manual
NFT market have recently taken off thanks to the great media interest and the activity in the market. Top NFT collections were sold at a high price with sometimes an emotional impact on the market.
We studied the top NFT collections that generated the most significant media impact, bringing together the date, the name of the collection, the artist name and the price at which they were sold.
| Name | Description | Type | Range |
|---|---|---|---|
| NFT Name | Name of the NFT (Digital piece of Art) | Categorical | String |
| Artist | Name of the artist | Categorical | String |
| Date | Date at which the piece was sold | Date | 1-Jan-2019 to 31-Dec-2020 |
| Price (USD) | Price at which the NFT was sold | Continuous | Float |
All Metrics are in USD.
CREATE TABLE nft_sales_history (
"date" TIMESTAMP,
"sales_usd_cumsum" DOUBLE,
"number_of_sales_cumsum" BIGINT,
"active_market_wallets_cumsum" DOUBLE,
"primary_sales_cumsum" BIGINT,
"secondary_sales_cumsum" DOUBLE,
"averageusd_cum" DOUBLE,
"sales_usd" DOUBLE,
"number_of_sales" DOUBLE,
"active_market_wallets" DOUBLE,
"primary_sales" DOUBLE
);CREATE TABLE nft_top_collections (
"index" DOUBLE,
"name" VARCHAR,
"volume" DOUBLE,
"volume_usd" DOUBLE,
"market_cap" DOUBLE,
"market_cap_usd" DOUBLE,
"sales" DOUBLE,
"floor_price" DOUBLE,
"floor_price_usd" DOUBLE,
"average_price" DOUBLE,
"average_price_usd" DOUBLE,
"owners" DOUBLE,
"assets" DOUBLE,
"owner_asset_ratio" DOUBLE,
"category" VARCHAR,
"website" VARCHAR,
"logo" VARCHAR
);Anyone who has the link will be able to view this.