TimeFeatures 1.0.17__tar.gz → 1.0.18__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (61) hide show
  1. timefeatures-1.0.18/MANIFEST.in +7 -0
  2. {timefeatures-1.0.17 → timefeatures-1.0.18}/PKG-INFO +126 -91
  3. {timefeatures-1.0.17 → timefeatures-1.0.18}/README.md +84 -70
  4. {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/PKG-INFO +126 -91
  5. timefeatures-1.0.18/TimeFeatures.egg-info/SOURCES.txt +56 -0
  6. timefeatures-1.0.18/TimeFeatures.egg-info/entry_points.txt +5 -0
  7. timefeatures-1.0.18/TimeFeatures.egg-info/requires.txt +10 -0
  8. timefeatures-1.0.18/docs/Makefile +11 -0
  9. timefeatures-1.0.18/docs/conf.py +26 -0
  10. timefeatures-1.0.18/docs/index.rst +37 -0
  11. timefeatures-1.0.18/docs/requirements.txt +1 -0
  12. timefeatures-1.0.18/docs/widgets/save-to-db.rst +70 -0
  13. timefeatures-1.0.18/docs/widgets/time-feature-constructor.rst +100 -0
  14. timefeatures-1.0.18/docs/widgets/variable-dependency-graph.rst +66 -0
  15. timefeatures-1.0.18/imgs/installation.png +0 -0
  16. timefeatures-1.0.18/imgs/workflow.png +0 -0
  17. {timefeatures-1.0.17 → timefeatures-1.0.18}/setup.cfg +7 -7
  18. {timefeatures-1.0.17 → timefeatures-1.0.18}/setup.py +55 -35
  19. timefeatures-1.0.18/timefeatures/__init__.py +0 -0
  20. timefeatures-1.0.18/timefeatures/help.py +27 -0
  21. timefeatures-1.0.18/timefeatures/help_html/.buildinfo +4 -0
  22. timefeatures-1.0.18/timefeatures/help_html/_sources/index.rst.txt +37 -0
  23. timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/save-to-db.rst.txt +70 -0
  24. timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/time-feature-constructor.rst.txt +100 -0
  25. timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/variable-dependency-graph.rst.txt +66 -0
  26. timefeatures-1.0.18/timefeatures/help_html/_static/alabaster.css +663 -0
  27. timefeatures-1.0.18/timefeatures/help_html/_static/basic.css +914 -0
  28. timefeatures-1.0.18/timefeatures/help_html/_static/custom.css +1 -0
  29. timefeatures-1.0.18/timefeatures/help_html/_static/doctools.js +149 -0
  30. timefeatures-1.0.18/timefeatures/help_html/_static/documentation_options.js +13 -0
  31. timefeatures-1.0.18/timefeatures/help_html/_static/file.png +0 -0
  32. timefeatures-1.0.18/timefeatures/help_html/_static/github-banner.svg +5 -0
  33. timefeatures-1.0.18/timefeatures/help_html/_static/language_data.js +192 -0
  34. timefeatures-1.0.18/timefeatures/help_html/_static/minus.png +0 -0
  35. timefeatures-1.0.18/timefeatures/help_html/_static/plus.png +0 -0
  36. timefeatures-1.0.18/timefeatures/help_html/_static/pygments.css +84 -0
  37. timefeatures-1.0.18/timefeatures/help_html/_static/searchtools.js +632 -0
  38. timefeatures-1.0.18/timefeatures/help_html/_static/sphinx_highlight.js +154 -0
  39. timefeatures-1.0.18/timefeatures/help_html/genindex.html +104 -0
  40. timefeatures-1.0.18/timefeatures/help_html/index.html +135 -0
  41. timefeatures-1.0.18/timefeatures/help_html/objects.inv +6 -0
  42. timefeatures-1.0.18/timefeatures/help_html/search.html +122 -0
  43. timefeatures-1.0.18/timefeatures/help_html/searchindex.js +1 -0
  44. timefeatures-1.0.18/timefeatures/help_html/widgets/save-to-db.html +185 -0
  45. timefeatures-1.0.18/timefeatures/help_html/widgets/time-feature-constructor.html +219 -0
  46. timefeatures-1.0.18/timefeatures/help_html/widgets/variable-dependency-graph.html +181 -0
  47. timefeatures-1.0.18/timefeatures/widgets/__init__.py +17 -0
  48. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/owsavetodb.py +401 -378
  49. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/owtimefeaturesconstructor.py +1889 -1860
  50. timefeatures-1.0.18/timefeatures/widgets/owvardependencygraph.py +219 -0
  51. timefeatures-1.0.17/TimeFeatures.egg-info/SOURCES.txt +0 -17
  52. timefeatures-1.0.17/TimeFeatures.egg-info/entry_points.txt +0 -2
  53. timefeatures-1.0.17/timefeatures/widgets/__init__.py +0 -5
  54. timefeatures-1.0.17/timefeatures/widgets/owvardependencygraph.py +0 -240
  55. {timefeatures-1.0.17 → timefeatures-1.0.18}/LICENSE +0 -0
  56. {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/dependency_links.txt +0 -0
  57. {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/top_level.txt +0 -0
  58. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/graphgenerator.svg +0 -0
  59. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/savedatadb.svg +0 -0
  60. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/timefeature-xs.svg +0 -0
  61. {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/timefeature.svg +0 -0
@@ -0,0 +1,7 @@
1
+ include README.md
2
+ include LICENSE
3
+ recursive-include docs *.rst *.py *.txt Makefile
4
+ recursive-include timefeatures/help_html *
5
+ recursive-include imgs *.png
6
+ prune docs/build
7
+ prune timefeatures/help_html/.doctrees
@@ -1,91 +1,126 @@
1
- Metadata-Version: 2.1
2
- Name: TimeFeatures
3
- Version: 1.0.17
4
- Summary: Timefeatures add-on for Orange 3 data mining software.
5
- Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
- Author: Alejandro Rivas García
7
- Author-email: alejandrorivasgarcia@gmail.com
8
- License: GPL3+
9
- Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Environment :: Plugins
12
- Classifier: Programming Language :: Python
13
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Classifier: Intended Audience :: Education
17
- Classifier: Intended Audience :: Science/Research
18
- Classifier: Intended Audience :: Developers
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
-
22
- Orange3 TimeFeatures
23
- ===============
24
-
25
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
26
-
27
- [Orange]: https://orangedatamining.com/
28
-
29
- Installation
30
- ------------
31
-
32
- ### Orange add-on installer
33
-
34
- Install from Orange add-on installer through Options -> Add-ons.
35
-
36
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
37
-
38
- ### Using pip
39
-
40
- To install the add-on with pip use
41
-
42
- pip install TimeFeatures
43
-
44
- To install the add-on from source, run
45
-
46
- python setup.py install
47
-
48
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
49
- Python's site-packages directory), run
50
-
51
- python setup.py develop
52
-
53
- You can also run
54
-
55
- pip install -e .
56
-
57
- which is sometimes preferable as you can *pip uninstall* packages later.
58
-
59
- ### Anaconda
60
-
61
- If using Anaconda Python distribution, simply run
62
-
63
- pip install TimeFeatures
64
-
65
- **Required Dependencies**:
66
- * numpy>=1.22.4
67
- * AnyQt>=0.2.0
68
- * Orange3>=3.34.0
69
- * PyQt5>=5.15.6
70
- * scipy>=1.7.3
71
- * Orange3-Network>=1.8.0
72
-
73
- Usage
74
- -----
75
-
76
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
77
- use
78
-
79
- orange-canvas
80
-
81
- or
82
-
83
- python3 -m Orange.canvas
84
-
85
- New widgets are in the toolbox bar under Time-Features section.
86
-
87
- Workflow Example
88
- -----
89
- This is an example of how you can use this add-on.
90
-
91
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Metadata-Version: 2.4
2
+ Name: TimeFeatures
3
+ Version: 1.0.18
4
+ Summary: Timefeatures add-on for Orange 3 data mining software.
5
+ Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
+ Author: Alejandro Rivas García
7
+ Author-email: alejandrorivasgarcia@gmail.com
8
+ License: GPL3+
9
+ Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Plugins
12
+ Classifier: Programming Language :: Python
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Intended Audience :: Education
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Intended Audience :: Developers
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: numpy>=1.22.4
22
+ Requires-Dist: AnyQt>=0.2.0
23
+ Requires-Dist: PyQt5>=5.15.6
24
+ Requires-Dist: PyQtWebEngine>=5.15.6
25
+ Requires-Dist: scipy>=1.7.3
26
+ Requires-Dist: psycopg2-binary>=2.9.9
27
+ Requires-Dist: Orange3-Network>=1.8.0
28
+ Provides-Extra: docs
29
+ Requires-Dist: Sphinx>=7.0; extra == "docs"
30
+ Dynamic: author
31
+ Dynamic: author-email
32
+ Dynamic: classifier
33
+ Dynamic: description
34
+ Dynamic: description-content-type
35
+ Dynamic: home-page
36
+ Dynamic: keywords
37
+ Dynamic: license
38
+ Dynamic: license-file
39
+ Dynamic: provides-extra
40
+ Dynamic: requires-dist
41
+ Dynamic: summary
42
+
43
+ Orange3 TimeFeatures
44
+ ===============
45
+
46
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
47
+
48
+ [Orange]: https://orangedatamining.com/
49
+
50
+ Installation
51
+ ------------
52
+
53
+ ### Orange add-on installer
54
+
55
+ Install from Orange add-on installer through Options -> Add-ons.
56
+
57
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
58
+
59
+ ### Using pip
60
+
61
+ To install the add-on with pip use
62
+
63
+ pip install TimeFeatures
64
+
65
+ To install the add-on from source, run
66
+
67
+ python setup.py install
68
+
69
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
70
+ Python's site-packages directory), run
71
+
72
+ python setup.py develop
73
+
74
+ You can also run
75
+
76
+ pip install -e .
77
+
78
+ which is sometimes preferable as you can *pip uninstall* packages later.
79
+
80
+ ### Anaconda
81
+
82
+ If using Anaconda Python distribution, simply run
83
+
84
+ pip install TimeFeatures
85
+
86
+ **Required Dependencies**:
87
+ * numpy>=1.22.4
88
+ * AnyQt>=0.2.0
89
+ * Orange3>=3.34.0
90
+ * PyQt5>=5.15.6
91
+ * PyQtWebEngine>=5.15.6
92
+ * scipy>=1.7.3
93
+ * Orange3-Network>=1.8.0
94
+
95
+ Usage
96
+ -----
97
+
98
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
99
+ use
100
+
101
+ orange-canvas
102
+
103
+ or
104
+
105
+ python3 -m Orange.canvas
106
+
107
+ New widgets are in the toolbox bar under Time-Features section.
108
+
109
+ Documentation
110
+ -------------
111
+
112
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
113
+ local HTML pages through its internal Help panel, not through an internet URL.
114
+ To rebuild the documentation locally, run
115
+
116
+ pip install -e ".[docs]"
117
+ python -m sphinx -b html docs timefeatures/help_html
118
+
119
+ Use the widget help action in Orange to open the corresponding page inside the
120
+ Orange Help window.
121
+
122
+ Workflow Example
123
+ -----
124
+ This is an example of how you can use this add-on.
125
+
126
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -1,70 +1,84 @@
1
- Orange3 TimeFeatures
2
- ===============
3
-
4
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
5
-
6
- [Orange]: https://orangedatamining.com/
7
-
8
- Installation
9
- ------------
10
-
11
- ### Orange add-on installer
12
-
13
- Install from Orange add-on installer through Options -> Add-ons.
14
-
15
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
16
-
17
- ### Using pip
18
-
19
- To install the add-on with pip use
20
-
21
- pip install TimeFeatures
22
-
23
- To install the add-on from source, run
24
-
25
- python setup.py install
26
-
27
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
28
- Python's site-packages directory), run
29
-
30
- python setup.py develop
31
-
32
- You can also run
33
-
34
- pip install -e .
35
-
36
- which is sometimes preferable as you can *pip uninstall* packages later.
37
-
38
- ### Anaconda
39
-
40
- If using Anaconda Python distribution, simply run
41
-
42
- pip install TimeFeatures
43
-
44
- **Required Dependencies**:
45
- * numpy>=1.22.4
46
- * AnyQt>=0.2.0
47
- * Orange3>=3.34.0
48
- * PyQt5>=5.15.6
49
- * scipy>=1.7.3
50
- * Orange3-Network>=1.8.0
51
-
52
- Usage
53
- -----
54
-
55
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
56
- use
57
-
58
- orange-canvas
59
-
60
- or
61
-
62
- python3 -m Orange.canvas
63
-
64
- New widgets are in the toolbox bar under Time-Features section.
65
-
66
- Workflow Example
67
- -----
68
- This is an example of how you can use this add-on.
69
-
70
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Orange3 TimeFeatures
2
+ ===============
3
+
4
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
5
+
6
+ [Orange]: https://orangedatamining.com/
7
+
8
+ Installation
9
+ ------------
10
+
11
+ ### Orange add-on installer
12
+
13
+ Install from Orange add-on installer through Options -> Add-ons.
14
+
15
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
16
+
17
+ ### Using pip
18
+
19
+ To install the add-on with pip use
20
+
21
+ pip install TimeFeatures
22
+
23
+ To install the add-on from source, run
24
+
25
+ python setup.py install
26
+
27
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
28
+ Python's site-packages directory), run
29
+
30
+ python setup.py develop
31
+
32
+ You can also run
33
+
34
+ pip install -e .
35
+
36
+ which is sometimes preferable as you can *pip uninstall* packages later.
37
+
38
+ ### Anaconda
39
+
40
+ If using Anaconda Python distribution, simply run
41
+
42
+ pip install TimeFeatures
43
+
44
+ **Required Dependencies**:
45
+ * numpy>=1.22.4
46
+ * AnyQt>=0.2.0
47
+ * Orange3>=3.34.0
48
+ * PyQt5>=5.15.6
49
+ * PyQtWebEngine>=5.15.6
50
+ * scipy>=1.7.3
51
+ * Orange3-Network>=1.8.0
52
+
53
+ Usage
54
+ -----
55
+
56
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
57
+ use
58
+
59
+ orange-canvas
60
+
61
+ or
62
+
63
+ python3 -m Orange.canvas
64
+
65
+ New widgets are in the toolbox bar under Time-Features section.
66
+
67
+ Documentation
68
+ -------------
69
+
70
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
71
+ local HTML pages through its internal Help panel, not through an internet URL.
72
+ To rebuild the documentation locally, run
73
+
74
+ pip install -e ".[docs]"
75
+ python -m sphinx -b html docs timefeatures/help_html
76
+
77
+ Use the widget help action in Orange to open the corresponding page inside the
78
+ Orange Help window.
79
+
80
+ Workflow Example
81
+ -----
82
+ This is an example of how you can use this add-on.
83
+
84
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -1,91 +1,126 @@
1
- Metadata-Version: 2.1
2
- Name: TimeFeatures
3
- Version: 1.0.17
4
- Summary: Timefeatures add-on for Orange 3 data mining software.
5
- Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
- Author: Alejandro Rivas García
7
- Author-email: alejandrorivasgarcia@gmail.com
8
- License: GPL3+
9
- Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
- Classifier: Development Status :: 4 - Beta
11
- Classifier: Environment :: Plugins
12
- Classifier: Programming Language :: Python
13
- Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
- Classifier: Operating System :: OS Independent
15
- Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
- Classifier: Intended Audience :: Education
17
- Classifier: Intended Audience :: Science/Research
18
- Classifier: Intended Audience :: Developers
19
- Description-Content-Type: text/markdown
20
- License-File: LICENSE
21
-
22
- Orange3 TimeFeatures
23
- ===============
24
-
25
- Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
26
-
27
- [Orange]: https://orangedatamining.com/
28
-
29
- Installation
30
- ------------
31
-
32
- ### Orange add-on installer
33
-
34
- Install from Orange add-on installer through Options -> Add-ons.
35
-
36
- ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
37
-
38
- ### Using pip
39
-
40
- To install the add-on with pip use
41
-
42
- pip install TimeFeatures
43
-
44
- To install the add-on from source, run
45
-
46
- python setup.py install
47
-
48
- To register this add-on with Orange, but keep the code in the development directory (do not copy it to
49
- Python's site-packages directory), run
50
-
51
- python setup.py develop
52
-
53
- You can also run
54
-
55
- pip install -e .
56
-
57
- which is sometimes preferable as you can *pip uninstall* packages later.
58
-
59
- ### Anaconda
60
-
61
- If using Anaconda Python distribution, simply run
62
-
63
- pip install TimeFeatures
64
-
65
- **Required Dependencies**:
66
- * numpy>=1.22.4
67
- * AnyQt>=0.2.0
68
- * Orange3>=3.34.0
69
- * PyQt5>=5.15.6
70
- * scipy>=1.7.3
71
- * Orange3-Network>=1.8.0
72
-
73
- Usage
74
- -----
75
-
76
- After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
77
- use
78
-
79
- orange-canvas
80
-
81
- or
82
-
83
- python3 -m Orange.canvas
84
-
85
- New widgets are in the toolbox bar under Time-Features section.
86
-
87
- Workflow Example
88
- -----
89
- This is an example of how you can use this add-on.
90
-
91
- ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
1
+ Metadata-Version: 2.4
2
+ Name: TimeFeatures
3
+ Version: 1.0.18
4
+ Summary: Timefeatures add-on for Orange 3 data mining software.
5
+ Home-page: https://github.com/alervgr/Orange-TimeFeatures
6
+ Author: Alejandro Rivas García
7
+ Author-email: alejandrorivasgarcia@gmail.com
8
+ License: GPL3+
9
+ Keywords: orange3 add-on,timefeatures,graph,time series,data mining,graph visualization,orange,addon,synthetic data
10
+ Classifier: Development Status :: 4 - Beta
11
+ Classifier: Environment :: Plugins
12
+ Classifier: Programming Language :: Python
13
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
14
+ Classifier: Operating System :: OS Independent
15
+ Classifier: Topic :: Software Development :: Libraries :: Python Modules
16
+ Classifier: Intended Audience :: Education
17
+ Classifier: Intended Audience :: Science/Research
18
+ Classifier: Intended Audience :: Developers
19
+ Description-Content-Type: text/markdown
20
+ License-File: LICENSE
21
+ Requires-Dist: numpy>=1.22.4
22
+ Requires-Dist: AnyQt>=0.2.0
23
+ Requires-Dist: PyQt5>=5.15.6
24
+ Requires-Dist: PyQtWebEngine>=5.15.6
25
+ Requires-Dist: scipy>=1.7.3
26
+ Requires-Dist: psycopg2-binary>=2.9.9
27
+ Requires-Dist: Orange3-Network>=1.8.0
28
+ Provides-Extra: docs
29
+ Requires-Dist: Sphinx>=7.0; extra == "docs"
30
+ Dynamic: author
31
+ Dynamic: author-email
32
+ Dynamic: classifier
33
+ Dynamic: description
34
+ Dynamic: description-content-type
35
+ Dynamic: home-page
36
+ Dynamic: keywords
37
+ Dynamic: license
38
+ Dynamic: license-file
39
+ Dynamic: provides-extra
40
+ Dynamic: requires-dist
41
+ Dynamic: summary
42
+
43
+ Orange3 TimeFeatures
44
+ ===============
45
+
46
+ Timefeatures add-on for [Orange] 3 data mining software for generating synthetic data using datasets with time series, generating graphs of relationships between the generated variables and includes another widget to save the data and configuration tables in a database.
47
+
48
+ [Orange]: https://orangedatamining.com/
49
+
50
+ Installation
51
+ ------------
52
+
53
+ ### Orange add-on installer
54
+
55
+ Install from Orange add-on installer through Options -> Add-ons.
56
+
57
+ ![Installation](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/installation.png?raw=true)
58
+
59
+ ### Using pip
60
+
61
+ To install the add-on with pip use
62
+
63
+ pip install TimeFeatures
64
+
65
+ To install the add-on from source, run
66
+
67
+ python setup.py install
68
+
69
+ To register this add-on with Orange, but keep the code in the development directory (do not copy it to
70
+ Python's site-packages directory), run
71
+
72
+ python setup.py develop
73
+
74
+ You can also run
75
+
76
+ pip install -e .
77
+
78
+ which is sometimes preferable as you can *pip uninstall* packages later.
79
+
80
+ ### Anaconda
81
+
82
+ If using Anaconda Python distribution, simply run
83
+
84
+ pip install TimeFeatures
85
+
86
+ **Required Dependencies**:
87
+ * numpy>=1.22.4
88
+ * AnyQt>=0.2.0
89
+ * Orange3>=3.34.0
90
+ * PyQt5>=5.15.6
91
+ * PyQtWebEngine>=5.15.6
92
+ * scipy>=1.7.3
93
+ * Orange3-Network>=1.8.0
94
+
95
+ Usage
96
+ -----
97
+
98
+ After the installation, the widgets from this add-on are registered with Orange. To run Orange from the terminal,
99
+ use
100
+
101
+ orange-canvas
102
+
103
+ or
104
+
105
+ python3 -m Orange.canvas
106
+
107
+ New widgets are in the toolbox bar under Time-Features section.
108
+
109
+ Documentation
110
+ -------------
111
+
112
+ The add-on includes Sphinx documentation for each widget. Orange resolves the
113
+ local HTML pages through its internal Help panel, not through an internet URL.
114
+ To rebuild the documentation locally, run
115
+
116
+ pip install -e ".[docs]"
117
+ python -m sphinx -b html docs timefeatures/help_html
118
+
119
+ Use the widget help action in Orange to open the corresponding page inside the
120
+ Orange Help window.
121
+
122
+ Workflow Example
123
+ -----
124
+ This is an example of how you can use this add-on.
125
+
126
+ ![Workflow](https://github.com/alervgr/Orange-TimeFeatures/blob/main/imgs/workflow.png?raw=true)
@@ -0,0 +1,56 @@
1
+ LICENSE
2
+ MANIFEST.in
3
+ README.md
4
+ setup.cfg
5
+ setup.py
6
+ TimeFeatures.egg-info/PKG-INFO
7
+ TimeFeatures.egg-info/SOURCES.txt
8
+ TimeFeatures.egg-info/dependency_links.txt
9
+ TimeFeatures.egg-info/entry_points.txt
10
+ TimeFeatures.egg-info/requires.txt
11
+ TimeFeatures.egg-info/top_level.txt
12
+ docs/Makefile
13
+ docs/conf.py
14
+ docs/index.rst
15
+ docs/requirements.txt
16
+ docs/widgets/save-to-db.rst
17
+ docs/widgets/time-feature-constructor.rst
18
+ docs/widgets/variable-dependency-graph.rst
19
+ imgs/installation.png
20
+ imgs/workflow.png
21
+ timefeatures/__init__.py
22
+ timefeatures/help.py
23
+ timefeatures/help_html/.buildinfo
24
+ timefeatures/help_html/genindex.html
25
+ timefeatures/help_html/index.html
26
+ timefeatures/help_html/objects.inv
27
+ timefeatures/help_html/search.html
28
+ timefeatures/help_html/searchindex.js
29
+ timefeatures/help_html/_sources/index.rst.txt
30
+ timefeatures/help_html/_sources/widgets/save-to-db.rst.txt
31
+ timefeatures/help_html/_sources/widgets/time-feature-constructor.rst.txt
32
+ timefeatures/help_html/_sources/widgets/variable-dependency-graph.rst.txt
33
+ timefeatures/help_html/_static/alabaster.css
34
+ timefeatures/help_html/_static/basic.css
35
+ timefeatures/help_html/_static/custom.css
36
+ timefeatures/help_html/_static/doctools.js
37
+ timefeatures/help_html/_static/documentation_options.js
38
+ timefeatures/help_html/_static/file.png
39
+ timefeatures/help_html/_static/github-banner.svg
40
+ timefeatures/help_html/_static/language_data.js
41
+ timefeatures/help_html/_static/minus.png
42
+ timefeatures/help_html/_static/plus.png
43
+ timefeatures/help_html/_static/pygments.css
44
+ timefeatures/help_html/_static/searchtools.js
45
+ timefeatures/help_html/_static/sphinx_highlight.js
46
+ timefeatures/help_html/widgets/save-to-db.html
47
+ timefeatures/help_html/widgets/time-feature-constructor.html
48
+ timefeatures/help_html/widgets/variable-dependency-graph.html
49
+ timefeatures/widgets/__init__.py
50
+ timefeatures/widgets/owsavetodb.py
51
+ timefeatures/widgets/owtimefeaturesconstructor.py
52
+ timefeatures/widgets/owvardependencygraph.py
53
+ timefeatures/widgets/icons/graphgenerator.svg
54
+ timefeatures/widgets/icons/savedatadb.svg
55
+ timefeatures/widgets/icons/timefeature-xs.svg
56
+ timefeatures/widgets/icons/timefeature.svg
@@ -0,0 +1,5 @@
1
+ [orange.canvas.help]
2
+ html-index = timefeatures.help:WIDGET_HELP_PATH
3
+
4
+ [orange.widgets]
5
+ Time-Features = timefeatures.widgets
@@ -0,0 +1,10 @@
1
+ numpy>=1.22.4
2
+ AnyQt>=0.2.0
3
+ PyQt5>=5.15.6
4
+ PyQtWebEngine>=5.15.6
5
+ scipy>=1.7.3
6
+ psycopg2-binary>=2.9.9
7
+ Orange3-Network>=1.8.0
8
+
9
+ [docs]
10
+ Sphinx>=7.0