gitAdrianK / pir-radiostation-analyser

"Programmieren in Rust" Course Project
MIT License
2 stars 1 forks source link

Create graphs for stations #14

Open gitAdrianK opened 7 years ago

gitAdrianK commented 7 years ago

Currently the radio-stations song, title and count are being displayed in a sort-able table. It would be a betterment if they all could also be displayed in a graph in the index.html for easy overview and comparison.

wimueller commented 7 years ago

One problem is what the graph sould show. The number of different songs on a station? Or the songs on all stations with the number of plays(which is very difficult to visualize)? What kind of visualization do you have in mind?

gitAdrianK commented 7 years ago

kinda like this: https://www.dynatable.com/#an-interactive-chart y-axis is count. (highest count from lef to right) x-axis is title - artist and just for each station one of those, somehow combining charts would be difficult anyway since songnames aren't consistent.

gitAdrianK commented 7 years ago

the largest problem is that i know jackshit javascript (and javascript isn't the focus of this project anyway)

wimueller commented 7 years ago

dyntable seems to be good for this

gitAdrianK commented 7 years ago

ye, i'm already using it for the sortable tables. i'll add a wikipage where to put the jquery and dyntable to properly display the html files the programm creates ( data/js and data/css)