You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+56-1Lines changed: 56 additions & 1 deletion
Original file line number
Diff line number
Diff line change
@@ -41,7 +41,7 @@ Import ``luminaire`` module in python
41
41
import luminaire
42
42
```
43
43
44
-
Check out[Luminaire documentation](https://zillow.github.io/luminaire) for detailed description of methods and usage.
44
+
See [Examples](#Examples) to get started. Also, refer to the[Luminaire documentation](https://zillow.github.io/luminaire) for detailed description of methods and usage.
45
45
46
46
47
47
## Time Series Outlier Detection Workflow
@@ -70,6 +70,61 @@ the user needs to provide very minimal configuration for monitoring any type of
70
70
71
71
Luminaire can also monitor a set of data points over windows of time instead of tracking individual data points. This approach is well-suited for streaming use cases where sustained fluctuations are of greater concern than individual fluctuations. See [anomaly detection for streaming data](https://zillow.github.io/luminaire/tutorial/streaming.html) for detailed information.
72
72
73
+
## Examples
74
+
75
+
### Batch Time Series Monitoring
76
+
```python
77
+
import pandas as pd
78
+
from luminaire.optimization.hyperparameter_optimization import HyperparameterOptimization
79
+
from luminaire.exploration.data_exploration import DataExploration
80
+
81
+
data = pd.read_csv('Path to input time series data')
82
+
# Input data should have a time column set as the index column of the dataframe and a value column named as 'raw'
0 commit comments