From e05e9619c5aeb4d70f24697bb252abf24ddaa800 Mon Sep 17 00:00:00 2001 From: Hossein Raei Date: Tue, 3 Oct 2023 11:32:47 +0330 Subject: [PATCH] final updates --- .../pages/4\360\237\223\212_Further_analysis.py" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git "a/phase3 Dashboard/pages/4\360\237\223\212_Further_analysis.py" "b/phase3 Dashboard/pages/4\360\237\223\212_Further_analysis.py" index aa71e33..a630b72 100644 --- "a/phase3 Dashboard/pages/4\360\237\223\212_Further_analysis.py" +++ "b/phase3 Dashboard/pages/4\360\237\223\212_Further_analysis.py" @@ -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 " @@ -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 "