Created
November 29, 2024 19:32
-
-
Save eyaltrabelsi/fcbfcb95f6f7af762516ff46b551150f to your computer and use it in GitHub Desktop.
personalized_dashboard_recommend_according_to_interaction
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
def get_most_relevant_dashboard(user_id) | |
user_interactions = st.session_state.user_interactions.get(user_id, {}) | |
most_interacted_dashboard = max(user_interactions, key=user_interactions.get, default=None) | |
plot_stock_data(most_interacted_dashboard) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment