Skip to content

Commit

Permalink
Patch 1 (#19)
Browse files Browse the repository at this point in the history
* hides index of dataframes

* whole data from dataframe displays for predictions
  • Loading branch information
tkmamidi authored Dec 10, 2023
1 parent d715beb commit 5c228dc
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/Home.py
Original file line number Diff line number Diff line change
Expand Up @@ -244,7 +244,7 @@ def main():
else:
# Display variant annotations from opencravat
st.subheader("**OpenCravat annotations**")
st.dataframe(overall)
st.dataframe(overall,hide_index=True)
st.write("\n\n")

# Select transcript
Expand Down Expand Up @@ -300,7 +300,7 @@ def main():
],
}
# Create DataFrame
pred_col1.dataframe(pd.DataFrame(var_scores))
pred_col1.dataframe(pd.DataFrame(var_scores),hide_index=True, use_container_width=True)
pred_col1.write("\n\n\n\n\n\n")

# Display DITTO score as a gauge chart using plotly
Expand Down

0 comments on commit 5c228dc

Please sign in to comment.