Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Develop #117

Merged
merged 6 commits into from
Jun 23, 2024
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Minor fix
  • Loading branch information
lucasimi committed Jun 23, 2024
commit 9bc00146f1d61dbfac6890cb5112984b5de60f0a
2 changes: 2 additions & 0 deletions app/streamlit_app.py
Original file line number Diff line number Diff line change
Expand Up @@ -616,6 +616,8 @@ def _mapper_seed():

def mapper_draw_section(color_feat):
df_all = st.session_state[S_RESULTS].df_all
X = st.session_state[S_RESULTS].X
colors = X
if color_feat in df_all.columns:
df_col = df_all[color_feat]
colors = df_col.to_numpy()
Expand Down
Loading