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 2.1 KB

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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
  1. stages:
  2. clean-load_ingresos:
  3. cmd: pjud clean-ingresos-materia
  4. deps:
  5. - data/raw/pjud/
  6. outs:
  7. - data/interim/pjud/IngresosMateria.feather
  8. clean-load_terminos:
  9. cmd: pjud clean-terminos-materia
  10. deps:
  11. - data/raw/pjud
  12. outs:
  13. - data/interim/pjud/TerminoMateria.feather
  14. clean-load_ingresos_rol:
  15. cmd: pjud clean-ingresos-rol
  16. deps:
  17. - data/raw/pjud
  18. outs:
  19. - data/interim/pjud/IngresosRol.feather
  20. clean-load_terminos_rol:
  21. cmd: pjud clean-terminos-rol
  22. deps:
  23. - data/raw/pjud
  24. outs:
  25. - data/interim/pjud/TerminoRol.feather
  26. clean-load_inventario:
  27. cmd: pjud clean-inventario
  28. deps:
  29. - data/raw/pjud
  30. outs:
  31. - data/interim/pjud/Inventario.feather
  32. clean-load_audiencias:
  33. cmd: pjud clean-audiencias
  34. deps:
  35. - data/raw/pjud
  36. outs:
  37. - data/interim/pjud/Audiencias.feather
  38. clean-load_duraciones:
  39. cmd: pjud clean-duraciones
  40. deps:
  41. - data/raw/pjud
  42. outs:
  43. - data/interim/pjud/Duraciones.feather
  44. clean-load_delitos:
  45. cmd: pjud clean-delitos
  46. deps:
  47. - data/raw/delitos
  48. outs:
  49. - data/processed/delitos/Delitos.feather
  50. org-garantia:
  51. cmd: pjud organic-garantia
  52. deps:
  53. - data/raw/cot
  54. outs:
  55. - data/interim/pjud/JuzgadosGarantia.feather
  56. org-top:
  57. cmd: pjud organic-top
  58. deps:
  59. - data/raw/cot
  60. outs:
  61. - data/interim/pjud/TribunalOral.feather
  62. org-jletras:
  63. cmd: pjud organic-jletras
  64. deps:
  65. - data/raw/cot
  66. outs:
  67. - data/interim/pjud/JuzgadosLetras.feather
  68. org-jpenales:
  69. cmd: pjud organic-jpenales
  70. deps:
  71. - data/interim/pjud
  72. - data/interim/subdere
  73. outs:
  74. - data/processed/pjud/JuzgadosPenales.feather
  75. - data/processed/pjud/ListadoTribunales.feather
  76. - data/processed/pjud/TribunalesOrales.feather
  77. - data/processed/subdere/DataRegiones.feather
  78. crea-comunas:
  79. cmd: pjud create-comunas
  80. deps:
  81. - data/raw/subdere
  82. outs:
  83. - data/interim/subdere/Provincias.feather
  84. crea-censo:
  85. cmd: pjud create-censo
  86. deps:
  87. - data/interim/subdere
  88. - data/raw/censo
  89. outs:
  90. - data/processed/censo/Censo2017.feather
Tip!

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

Comments

Loading...