Data analysis: Difference between revisions

From ARIS
Jump to navigation Jump to search
Blanca (talk | contribs)
No edit summary
Blanca (talk | contribs)
No edit summary
Line 3: Line 3:
<graphviz border='frame' format='png'>
<graphviz border='frame' format='png'>
digraph FunctionalitiesDiagram {
digraph FunctionalitiesDiagram {
   node [shape="oval" style=filled fillcolor="orange" fontsize="7pt"]
   node [shape="oval" style=filled fillcolor="orange" fontsize="7pt"];
   //----- Data Analysis graph
   //----- Data Analysis graph
     // Nodes
     // Nodes
     DataAnalysis [label="Data Analysis" ];
     DataAnalysis [label="Data Analysis"];
     GlobalIndicators [label="Global Indicators", shape="tab", URL="#Global_indicators" ];
     GlobalIndicators [label="Global Indicators" shape=tab URL="#Global_indicators" ];
     TestsPerLaboratoryArea [label="Tests Per Laboratory Area", shape="tab", URL="#Tests_per_laboratory_area"];
     TestsPerLaboratoryArea [label="Tests Per Laboratory Area" shape=tab URL="#Tests_per_laboratory_area"];
     TestsPerKind [label="Tests Per Kind", shape="tab", URL="#Tests_per_kind"];
     TestsPerKind [label="Tests Per Kind" shape=tab URL="#Tests_per_kind"];
     // Edges
     // Edges
     DataAnalysis -> GlobalIndicators ;
     DataAnalysis -> GlobalIndicators;
     DataAnalysis -> TestsPerLaboratoryArea;
     DataAnalysis -> TestsPerLaboratoryArea;
     DataAnalysis -> TestsPerKind;
     DataAnalysis -> TestsPerKind;

Revision as of 17:15, 12 March 2023

This provides a very basic analytical functionality based on counters. It basically allows the laboratory supervisor to keep track of the number of tests performed (potentially grouped) and some basic elements related to the requests.

Database queries[edit]

This form contains a filter at the top of the screen, which allows the user to choose the parameter for the database search. There are, at most, nine filter fields available.

  1. From (request's creation date): the data taken will only contain requests created after this date.
  2. Until (request's creation date): the data taken will only contain requests created before this date.
  3. Test request state
  4. Laboratory area
  5. Requesting centre
  6. Requesting unit
  7. Patient's gender
  8. Patient's provenance region
  9. Patient's provenance location

Not all filters are always visible. If the ARIS database does not contain values for a specific element, the filter for this element will not be shown to the user.

Global indicators[edit]

This tab contains a table with counters, which shows the user the number of certain elements that are in the ARIS database.

Tests per laboratory area[edit]

This tab groups together all of the tests that belong to each laboratory area and shows the user the number of each one.

Tests per kind[edit]

This tab groups together all of the kinds of tests and shows the user the number of each one. It also informs the user as to which laboratory area each kind of test belongs to.