OTTAA-Project / ottaa_project_flutter

Join us to create the first predictive augmentative communication platform for speech-impaired children!
https://ottaa-project.github.io/
GNU General Public License v3.0
10 stars 4 forks source link

Report #27

Closed hectoritr closed 1 year ago

hectoritr commented 2 years ago

Describe the solution you'd like A report clearly illustrates the progress a user is making using OTTAA Project. Cards like views, in a grid layout, are used to show different kinds of user data.

Screenshot_2022-05-11-16-51-00-446

OTTAA Score:

Vocabulario:

Actividad

Screenshot_2022-05-11-16-51-12-411

Frases creadas

Pictogramas promedio por frase

Frases mas usadas

asimjawad commented 2 years ago

I am facing some difficulties in finding a graph which can shows a smooth line for the flutter, other than that the UI is done how many most used groups do we need? @hectoritr

asimjawad commented 2 years ago

@hectoritr and also send me that little icon on the right side of the most used phrases

hectoritr commented 2 years ago

Formula to calculate the score @asimjawad

// score = last7DaysUsage * a + sentences7days * b + averagePictoFrase * c + usedGroups * d
// maxScore = 7 * a + 700 * b + 5 * c + 44 * d = 10000
//1000 equal one level
` last7DaysUsage = number of days the user used the app in the last 7 days. sentences7days = sentences created in the last 7 days. averagePictoFrase = average pictograms per sentence. usedGroups = number of different used groups. After you gather all these variables
int a = 500, b = 3, c = 500, d = 44, level = 0, last7DaysUsage = 0, usedGroups = 0;
double score = 0;
score = last7DaysUsage * a + frases7days * b + averagePictoFrase * c + usedGroups * d;
return (int) (score / 1000);
`
hectoritr commented 2 years ago

I am facing some difficulties in finding a graph which can shows a smooth line for the flutter, other than that the UI is done how many most used groups do we need? @hectoritr

Let's try with 4, if we can fit them there.

asimjawad commented 2 years ago

I will change the UI in the meanwhile to fit 4 of these @hectoritr

hectoritr commented 2 years ago

@hectoritr and also send me that little icon on the right side of the most used phrases

Here you have https://raw.githubusercontent.com/OTTAA-Project/OTTAAProject/master/app/src/main/res/drawable-xhdpi/logo_ottaa_dev.webp

hectoritr commented 2 years ago

I've tested the new report and looks great! Few things to solve and it would be good to go.

Screen Shot 2022-09-22 at 22 56 49 Screen Shot 2022-09-22 at 23 03 31
hectoritr commented 2 years ago

@asimjawad

asimjawad commented 2 years ago

That is from the plugin @hectoritr, I will make it such a way that when data is loading just show a progress indicator and then load the graph

hectoritr commented 1 year ago

We will re do this with the new UI