Jon Solow commited on
Commit
b14851b
Β·
1 Parent(s): 8569c62

Replace raw naming

Browse files
src/dbt_data_client.py CHANGED
@@ -45,31 +45,31 @@ def get_current_tables() -> list[str]:
45
 
46
 
47
  def get_snap_counts() -> pd.DataFrame:
48
- df = execute_db_command_df("SELECT * from raw_snap_counts")
49
  df["fantasy_position"] = df["position"].isin(FANTASY_POSITIONS)
50
  return df
51
 
52
 
53
  def get_play_by_play() -> pd.DataFrame:
54
- df = execute_db_command_df("SELECT * from raw_play_by_play")
55
  return df
56
 
57
 
58
  def get_player_stats() -> pd.DataFrame:
59
- df = execute_db_command_df("SELECT * from raw_player_stats")
60
  return df
61
 
62
 
63
  def get_ftn_charting() -> pd.DataFrame:
64
- df = execute_db_command_df("SELECT * from raw_ftn_charting")
65
  return df
66
 
67
 
68
  def get_depth_charts() -> pd.DataFrame:
69
- df = execute_db_command_df("SELECT * from raw_depth_charts")
70
  return df
71
 
72
 
73
  def get_nextgen_stats(stat_category: str) -> pd.DataFrame:
74
- df = execute_db_command_df(f"SELECT * from raw_ngs_{stat_category}")
75
  return df
 
45
 
46
 
47
  def get_snap_counts() -> pd.DataFrame:
48
+ df = execute_db_command_df("SELECT * from snap_counts")
49
  df["fantasy_position"] = df["position"].isin(FANTASY_POSITIONS)
50
  return df
51
 
52
 
53
  def get_play_by_play() -> pd.DataFrame:
54
+ df = execute_db_command_df("SELECT * from play_by_play")
55
  return df
56
 
57
 
58
  def get_player_stats() -> pd.DataFrame:
59
+ df = execute_db_command_df("SELECT * from player_stats")
60
  return df
61
 
62
 
63
  def get_ftn_charting() -> pd.DataFrame:
64
+ df = execute_db_command_df("SELECT * from ftn_charting")
65
  return df
66
 
67
 
68
  def get_depth_charts() -> pd.DataFrame:
69
+ df = execute_db_command_df("SELECT * from depth_charts")
70
  return df
71
 
72
 
73
  def get_nextgen_stats(stat_category: str) -> pd.DataFrame:
74
+ df = execute_db_command_df(f"SELECT * from ngs_{stat_category}")
75
  return df
src/dbt_yfdash/models/nflverse/{raw_depth_charts.sql β†’ depth_charts.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_ftn_charting.sql β†’ ftn_charting.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_ngs_passing.sql β†’ ngs_passing.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_ngs_receiving.sql β†’ ngs_receiving.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_ngs_rushing.sql β†’ ngs_rushing.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_play_by_play.sql β†’ play_by_play.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_player_stats.sql β†’ player_stats.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/{raw_players.sql β†’ players.sql} RENAMED
File without changes
src/dbt_yfdash/models/nflverse/schema.yml CHANGED
@@ -1,30 +1,30 @@
1
  version: 2
2
 
3
  models:
4
- - name: raw_depth_charts
5
  description: "depth_charts"
6
 
7
- - name: raw_ftn_charting
8
  description: "ftn_charting"
9
 
10
- - name: raw_ngs_passing
11
  description: "ngs_passing"
12
 
13
- - name: raw_ngs_receiving
14
  description: "ngs_receiving"
15
 
16
- - name: raw_ngs_rushing
17
  description: "ngs_rushing"
18
 
19
- - name: raw_play_by_play
20
  description: "play_by_play"
21
 
22
- - name: raw_player_stats
23
  description: "player_stats"
24
 
25
- - name: raw_players
26
  description: "players"
27
 
28
- - name: raw_snap_counts
29
  description: "snap_counts"
30
 
 
1
  version: 2
2
 
3
  models:
4
+ - name: depth_charts
5
  description: "depth_charts"
6
 
7
+ - name: ftn_charting
8
  description: "ftn_charting"
9
 
10
+ - name: ngs_passing
11
  description: "ngs_passing"
12
 
13
+ - name: ngs_receiving
14
  description: "ngs_receiving"
15
 
16
+ - name: ngs_rushing
17
  description: "ngs_rushing"
18
 
19
+ - name: play_by_play
20
  description: "play_by_play"
21
 
22
+ - name: player_stats
23
  description: "player_stats"
24
 
25
+ - name: players
26
  description: "players"
27
 
28
+ - name: snap_counts
29
  description: "snap_counts"
30
 
src/dbt_yfdash/models/nflverse/{raw_snap_counts.sql β†’ snap_counts.sql} RENAMED
File without changes