Skip to content
Snippets Groups Projects
Commit df8fb941 authored by DIANE's avatar DIANE
Browse files

samples_selection

parent 99c3c0c9
No related branches found
No related tags found
No related merge requests found
...@@ -108,7 +108,8 @@ with container2: ...@@ -108,7 +108,8 @@ with container2:
axis3 = pc.selectbox("z-axis", options = model.scores_.columns, index=2) axis3 = pc.selectbox("z-axis", options = model.scores_.columns, index=2)
if type_cluster == 'Kmeans': if type_cluster == 'Kmeans':
cl = Sk_Kmeans(pd.concat([model.scores_.loc[:,axis1], model.scores_.loc[:,axis2], model.scores_.loc[:,axis3]], axis = 1), max_clusters = 30) scsc = pd.concat([model.scores_.loc[:,axis1], model.scores_.loc[:,axis2], model.scores_.loc[:,axis3]], axis = 1)
cl = Sk_Kmeans(scsc, max_clusters = 30)
with scores: with scores:
t = model.scores_ t = model.scores_
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment