Skip to content

med-material/trail-it-analysis

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

37 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Trail-it Dashboard Documentation

v2_Conceptual_model_Trail-it drawio-2

Modules

the dashboard is divided into modules :

  • Modules Data returns a data.
  • Modules Page contains the skeleton of a page.
  • Module Plot create the graph.

Data

Data_import

Load

This module takes care of the connection to the MySQL database in order to recover all the data which will then be sent to the Server.R. The credentials are retrieved from the credentials.csv file.

mydb = dbConnect(MySQL(),
                     user=credentials[1, "username"],
                     password=credentials[1, "password"],
                     dbname=credentials[1, "dbname"],
                     host=credentials[1, "host"])

Preprocess

in order to resolve problems, bugs and conflicts, modifications are made to our data :

  • Add a column Timestamp
  • Delete duplicate rows
  • Remove rows that have a negative reaction time
  • Add a column sessionID

Data_list_players

this module creates from D, a new data.frame which gathers the profileID and their playerName. The two columns are concatenated in the column playerNameID. As in the example below :

profileID playerName playerNameID
id0 name1 name1 ( id0 )
id1 name2 name2 ( id1 )

playerNameID will be useful when the user will have to select a player. If two players have the same playerName, the user will be able to identify them by the profileID available in parentheses.

Data_select_player

This module takes care of changing the current player. It returns the profileID.

Page

page_individual_profile_information

Screenshot 2022-01-21 at 14 25 57

page_individual_performance_session

Screenshot 2022-01-21 at 14 26 55

Screenshot 2022-01-21 at 14 27 09

Screenshot 2022-01-21 at 14 27 20

page_trends_statistics_players

Screenshot 2022-01-21 at 14 28 32

Screenshot 2022-01-21 at 14 28 44

Screenshot 2022-01-21 at 14 28 54

page_trends_performance_players

Screenshot 2022-01-21 at 14 30 30

Screenshot 2022-01-21 at 14 30 43

Screenshot 2022-01-21 at 14 30 48

About

data analysis of trail it

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • R 93.3%
  • CSS 6.7%