cyberosa commited on
Commit
3cc81bb
·
1 Parent(s): 355fb10

updating files with missing info

Browse files
data/closed_markets_div.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:d715e676a0779f18b69e9f549175793e6581cb9e87a456f3e8b0bc7db26190d6
3
- size 48884
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:c10b8cb9acdfbcc56125f623fe432ccc253e823cfcb942fb5f49a74f817f6a76
3
+ size 58624
data/unknown_traders.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:5c237838416f8339b145719e5b370df1d9763099f9e5fa3e75d4d69053e5d311
3
- size 200722
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:340797fc315e6d71af1c4c2072b4a1d2d343fb722eac43a205fbf80cd2281074
3
+ size 210044
data/weekly_mech_calls.parquet CHANGED
@@ -1,3 +1,3 @@
1
  version https://git-lfs.github.com/spec/v1
2
- oid sha256:fcaf2cf4955d8bf73727d2e83aa959fe69b6ac99be801008d724b4810eea9c5f
3
- size 50599
 
1
  version https://git-lfs.github.com/spec/v1
2
+ oid sha256:e9e8532910d7a0e4e9cab637cbb614810c564e2c95ad3a30b62c03268097a721
3
+ size 55379
notebooks/closed_markets.ipynb CHANGED
@@ -2,7 +2,7 @@
2
  "cells": [
3
  {
4
  "cell_type": "code",
5
- "execution_count": 3,
6
  "metadata": {},
7
  "outputs": [],
8
  "source": [
@@ -95,6 +95,18 @@
95
  "markets_df.info()"
96
  ]
97
  },
 
 
 
 
 
 
 
 
 
 
 
 
98
  {
99
  "cell_type": "code",
100
  "execution_count": 10,
@@ -106,6 +118,13 @@
106
  "markets_df[\"creation_date\"] = pd.to_datetime(markets_df[\"creation_date\"])"
107
  ]
108
  },
 
 
 
 
 
 
 
109
  {
110
  "cell_type": "code",
111
  "execution_count": 11,
 
2
  "cells": [
3
  {
4
  "cell_type": "code",
5
+ "execution_count": 2,
6
  "metadata": {},
7
  "outputs": [],
8
  "source": [
 
95
  "markets_df.info()"
96
  ]
97
  },
98
+ {
99
+ "cell_type": "code",
100
+ "execution_count": 3,
101
+ "metadata": {},
102
+ "outputs": [],
103
+ "source": [
104
+ "def add_creation_date(df):\n",
105
+ " df[\"creation_timestamp\"] = pd.to_datetime(df[\"creationTimestamp\"])\n",
106
+ " df[\"creation_date\"] = df[\"creation_timestamp\"].dt.date\n",
107
+ " df[\"creation_date\"] = pd.to_datetime(df[\"creation_date\"])"
108
+ ]
109
+ },
110
  {
111
  "cell_type": "code",
112
  "execution_count": 10,
 
118
  "markets_df[\"creation_date\"] = pd.to_datetime(markets_df[\"creation_date\"])"
119
  ]
120
  },
121
+ {
122
+ "cell_type": "code",
123
+ "execution_count": null,
124
+ "metadata": {},
125
+ "outputs": [],
126
+ "source": []
127
+ },
128
  {
129
  "cell_type": "code",
130
  "execution_count": 11,