Baselight

Simple Stock Data Set

This Dataset represents the collection of a stocks data from a local source.

@kaggle.designerbe_simple_stock_data_set

Loading...
Loading...

About this Dataset

Simple Stock Data Set

Context

The idea is to explore the data-set for weaknesses in the collection/generation scheme of the provider. This data-set is aimed for practice against data leakages.

Content

The dataset consists of 4 columns namely v1, v2, time, price. One can try an reverse engineer the unknown variables and provide me with an opinion about the generation process. The time and price tabs are self-explanatory. The training set consists of 50,000 cases and the test dataset consists of 10,000 cases.

Tables

Test

@kaggle.designerbe_simple_stock_data_set.test
  • 341.96 KB
  • 10000 rows
  • 4 columns
Loading...

CREATE TABLE test (
  "price" DOUBLE,
  "v1" BIGINT,
  "v2" DOUBLE,
  "time" VARCHAR
);

Train

@kaggle.designerbe_simple_stock_data_set.train
  • 1.65 MB
  • 50000 rows
  • 4 columns
Loading...

CREATE TABLE train (
  "price" DOUBLE,
  "v1" BIGINT,
  "v2" DOUBLE,
  "time" VARCHAR
);

Share link

Anyone who has the link will be able to view this.