Update pages/type_text_v7.py
Browse files- pages/type_text_v7.py +1 -1
pages/type_text_v7.py
CHANGED
@@ -68,7 +68,7 @@ from_line = 0 # Imaging services chapter start, adjust as needed
|
|
68 |
to_line = 10080 # Imaging services chapter end, adjust as needed
|
69 |
nrows = to_line - from_line + 1
|
70 |
skiprows = list(range(1,from_line - 1))
|
71 |
-
df_SBS = pd.read_csv("
|
72 |
#st.write(df_SBS.head(5))
|
73 |
|
74 |
SBScorpus = df_SBS['Long_Description'].values.tolist()
|
|
|
68 |
to_line = 10080 # Imaging services chapter end, adjust as needed
|
69 |
nrows = to_line - from_line + 1
|
70 |
skiprows = list(range(1,from_line - 1))
|
71 |
+
df_SBS = pd.read_csv("SBS_V2_0/Code_Table.csv", header=0, skip_blank_lines=False, skiprows=skiprows, nrows=nrows)
|
72 |
#st.write(df_SBS.head(5))
|
73 |
|
74 |
SBScorpus = df_SBS['Long_Description'].values.tolist()
|