thenineteen / Semiology-Visualisation-Tool

Data driven 3D brain visualisation of semiology. Semiology to anatomy translator based on over 4600 patients from 309 peer-reviewed articles.
MIT License
9 stars 6 forks source link

duplicated lateralised GIFs #170

Closed thenineteen closed 4 years ago

thenineteen commented 4 years ago

in Sheet Full GIF Map for Review

This was resulting in duplication of GIF pt #s values when the following section of Q_L was being run:


fixed = all_combined_gifs.pivot_table(
        columns='Gif Parcellations', values='pt #s', aggfunc='sum')
    fixed2 = fixed.melt(value_name='pt #s')
    fixed2.insert(0, 'Semiology Term', np.nan)
    # fixed2.loc[0, 'Semiology Term'] = str( list(inspect_result.index.values) )
    all_combined_gifs = fixed2
    all_combined_gifs
thenineteen commented 4 years ago

see commit # 1f6b2b8e5218a8b9d8d5d1d9f35170e09ff08aec which resolved this issue.