Register
Login
Resources
Docs Blog Datasets Glossary Case Studies Tutorials & Webinars
Product
Data Engine LLMs Platform Enterprise
Pricing Explore
Connect to our Discord channel

dvc.yaml 619 B

You have to be logged in to leave a comment. Sign In
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
  1. #stages:
  2. # fetch_weather_data:
  3. # cmd: poetry run poe fetch_weather_data
  4. # deps:
  5. # - src/data/scripts/fetch_weather.py
  6. # - data/raw/weather.csv
  7. # outs:
  8. # - data/raw/weather.csv
  9. # fetch_bike_data:
  10. # cmd: poetry run poe fetch_bike_data
  11. # deps:
  12. # - src/data/scripts/fetch_bike_stations.py
  13. # - data/raw/bike.csv
  14. # outs:
  15. # - data/raw/mbajk_stations.csv
  16. # process:
  17. # cmd: poetry run poe process
  18. # deps:
  19. # - src/data/scripts/process_data.py
  20. # - data/raw/mbajk_stations.csv
  21. # - data/raw/weather.csv
  22. # outs:
  23. # # outputs a file for each station
  24. #
  25. #
  26. #
Tip!

Press p or to see the previous file or, n or to see the next file

Comments

Loading...