Skip to content

Commit

Permalink
Improve dashboards for analytics. (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
nmanovic authored Oct 15, 2018
1 parent 70891f0 commit 8600970
Show file tree
Hide file tree
Showing 2 changed files with 156 additions and 66 deletions.
90 changes: 90 additions & 0 deletions analytics/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,90 @@
# Analytics for Computer Vision Annotation Tool (CVAT)

At the moment it is not possible to save advanced settings. Below values should be specified manually.

## Time picker default
{
"from": "now/d",
"to": "now/d",
"display": "Today",
"section": 0
}

## Time picker quick ranges

```json
[
{
"from": "now/d",
"to": "now/d",
"display": "Today",
"section": 0
},
{
"from": "now/w",
"to": "now/w",
"display": "This week",
"section": 0
},
{
"from": "now/M",
"to": "now/M",
"display": "This month",
"section": 0
},
{
"from": "now/y",
"to": "now/y",
"display": "This year",
"section": 0
},
{
"from": "now/d",
"to": "now",
"display": "Today so far",
"section": 2
},
{
"from": "now/w",
"to": "now",
"display": "Week to date",
"section": 2
},
{
"from": "now/M",
"to": "now",
"display": "Month to date",
"section": 2
},
{
"from": "now/y",
"to": "now",
"display": "Year to date",
"section": 2
},
{
"from": "now-1d/d",
"to": "now-1d/d",
"display": "Yesterday",
"section": 1
},
{
"from": "now-1w/w",
"to": "now-1w/w",
"display": "Previous week",
"section": 1
},
{
"from": "now-1m/m",
"to": "now-1m/m",
"display": "Previous month",
"section": 1
},
{
"from": "now-1y/y",
"to": "now-1y/y",
"display": "Previous year",
"section": 1
}
]
```
Loading

0 comments on commit 8600970

Please sign in to comment.