https://github.com/jeremyary/titanic-demo
https://github.com/jeremyary/titanic-demo
Last synced: 26 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/jeremyary/titanic-demo
- Owner: jeremyary
- Created: 2023-12-15T16:46:44.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2023-12-19T12:30:41.000Z (over 1 year ago)
- Last Synced: 2024-04-16T19:30:26.224Z (about 1 year ago)
- Language: Jupyter Notebook
- Size: 63.5 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# GETTING STARTED
start with data-init notebook to split original data into some basic starting features# USEFUL COMMANDS
```
# sync bucket contents to local dir (add the dir to .gitignore)
aws s3 sync s3:/// bucket-dump/# replace data in bucket with new parquet copies from local /data dir
for file in data/*.parquet; do { aws s3 cp $file s3:///; } done
```