epogrebnyak / ssg-dataset

Open reproducible dataset on static site generators (SSG) popularity.
https://ssg-dataset.streamlit.app
GNU General Public License v3.0
28 stars 47 forks source link

Change order of SSG - ignore uppercase [0.3h] #18

Closed epogrebnyak closed 2 years ago

epogrebnyak commented 2 years ago

https://share.streamlit.io/epogrebnyak/ssg-dataset/main#links

finrod-felagund23 commented 2 years ago

in the function get_data() or in line with _df = get_data() assignment, run in the cycle and change "name" field

epogrebnyak commented 2 years ago

in the function get_data() or in line with _df = get_data() assignment, run in the cycle and change "name" field

Not quite, we just neet to sort the ouptut around here:

https://github.com/epogrebnyak/ssg-dataset/blob/fa20bc3f0ec11b9e3ccae90a522fa1b55f286983/streamlit_app.py#L273-L276

It is not a good idea to modify _df for the purposes of 'Links' section as it may affect other plots.

Broader concept is model vs view - when changing representation must work on view (data transforamtion), not the model (data source).