Skip to content

Commit

Permalink
final updates
Browse files Browse the repository at this point in the history
  • Loading branch information
Raei-MH committed Oct 3, 2023
1 parent fc8875e commit e05e961
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions phase3 Dashboard/pages/4πŸ“Š_Further_analysis.py
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ def prepare_data(_mysqldb: MySQLConnection):
fig1 = px.bar(publisher_translator, x='publisher_name', y='book_count',
hover_data=['translator_name'], color='book_count',
labels={'book_count': 'Book Count', 'publisher_name': 'Publisher Name'},
title="Publisher Translator Book Count")
title="Top Publisher Translates")
st.plotly_chart(fig1, use_container_width=True)
st.markdown(
"As you can see, this plot shows the most translations by the publications which demonstrates "
Expand All @@ -49,7 +49,7 @@ def prepare_data(_mysqldb: MySQLConnection):
fig2 = px.bar(publisher_genres, x='genre_name', y='max_book_count',
hover_data=['best_publisher_name'], color='max_book_count',
labels={'max_book_count': 'Max Book Count', 'genre_name': 'Genre Name'},
title="Publisher Genres Max Book Count")
title="Top Publisher Genres")
st.plotly_chart(fig2)
st.markdown(
"As you can see, this plot shows the most common genres which are printed by the publications which absolutely "
Expand Down

0 comments on commit e05e961

Please sign in to comment.