Spaces:
Sleeping
Sleeping
| import altair as alt | |
| import numpy as np | |
| import pandas as pd | |
| import streamlit as st | |
| from embedding_atlas.streamlit import embedding_atlas | |
| import streamlit as st | |
| st.set_page_config(layout="wide") | |
| df = pd.read_csv("src/phecode_atc_umap.csv", sep=',') | |
| value = embedding_atlas( | |
| df, text="node_name", | |
| x="0", y="1", neighbors="neighbors", | |
| show_table=True, | |
| show_charts=False | |
| ) | |