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.
- timefeatures-1.0.18/MANIFEST.in +7 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/PKG-INFO +126 -91
- {timefeatures-1.0.17 → timefeatures-1.0.18}/README.md +84 -70
- {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/PKG-INFO +126 -91
- timefeatures-1.0.18/TimeFeatures.egg-info/SOURCES.txt +56 -0
- timefeatures-1.0.18/TimeFeatures.egg-info/entry_points.txt +5 -0
- timefeatures-1.0.18/TimeFeatures.egg-info/requires.txt +10 -0
- timefeatures-1.0.18/docs/Makefile +11 -0
- timefeatures-1.0.18/docs/conf.py +26 -0
- timefeatures-1.0.18/docs/index.rst +37 -0
- timefeatures-1.0.18/docs/requirements.txt +1 -0
- timefeatures-1.0.18/docs/widgets/save-to-db.rst +70 -0
- timefeatures-1.0.18/docs/widgets/time-feature-constructor.rst +100 -0
- timefeatures-1.0.18/docs/widgets/variable-dependency-graph.rst +66 -0
- timefeatures-1.0.18/imgs/installation.png +0 -0
- timefeatures-1.0.18/imgs/workflow.png +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/setup.cfg +7 -7
- {timefeatures-1.0.17 → timefeatures-1.0.18}/setup.py +55 -35
- timefeatures-1.0.18/timefeatures/__init__.py +0 -0
- timefeatures-1.0.18/timefeatures/help.py +27 -0
- timefeatures-1.0.18/timefeatures/help_html/.buildinfo +4 -0
- timefeatures-1.0.18/timefeatures/help_html/_sources/index.rst.txt +37 -0
- timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/save-to-db.rst.txt +70 -0
- timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/time-feature-constructor.rst.txt +100 -0
- timefeatures-1.0.18/timefeatures/help_html/_sources/widgets/variable-dependency-graph.rst.txt +66 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/alabaster.css +663 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/basic.css +914 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/custom.css +1 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/doctools.js +149 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/documentation_options.js +13 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/file.png +0 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/github-banner.svg +5 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/language_data.js +192 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/minus.png +0 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/plus.png +0 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/pygments.css +84 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/searchtools.js +632 -0
- timefeatures-1.0.18/timefeatures/help_html/_static/sphinx_highlight.js +154 -0
- timefeatures-1.0.18/timefeatures/help_html/genindex.html +104 -0
- timefeatures-1.0.18/timefeatures/help_html/index.html +135 -0
- timefeatures-1.0.18/timefeatures/help_html/objects.inv +6 -0
- timefeatures-1.0.18/timefeatures/help_html/search.html +122 -0
- timefeatures-1.0.18/timefeatures/help_html/searchindex.js +1 -0
- timefeatures-1.0.18/timefeatures/help_html/widgets/save-to-db.html +185 -0
- timefeatures-1.0.18/timefeatures/help_html/widgets/time-feature-constructor.html +219 -0
- timefeatures-1.0.18/timefeatures/help_html/widgets/variable-dependency-graph.html +181 -0
- timefeatures-1.0.18/timefeatures/widgets/__init__.py +17 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/owsavetodb.py +401 -378
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/owtimefeaturesconstructor.py +1889 -1860
- timefeatures-1.0.18/timefeatures/widgets/owvardependencygraph.py +219 -0
- timefeatures-1.0.17/TimeFeatures.egg-info/SOURCES.txt +0 -17
- timefeatures-1.0.17/TimeFeatures.egg-info/entry_points.txt +0 -2
- timefeatures-1.0.17/timefeatures/widgets/__init__.py +0 -5
- timefeatures-1.0.17/timefeatures/widgets/owvardependencygraph.py +0 -240
- {timefeatures-1.0.17 → timefeatures-1.0.18}/LICENSE +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/dependency_links.txt +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/TimeFeatures.egg-info/top_level.txt +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/graphgenerator.svg +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/savedatadb.svg +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/timefeature-xs.svg +0 -0
- {timefeatures-1.0.17 → timefeatures-1.0.18}/timefeatures/widgets/icons/timefeature.svg +0 -0
|
@@ -1,91 +1,126 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
2
|
-
Name: TimeFeatures
|
|
3
|
-
Version: 1.0.
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
###
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
pip install TimeFeatures
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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
|
+

|
|
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
|
+

|
|
@@ -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
|
-

|
|
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
|
-
*
|
|
50
|
-
*
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
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
|
+

|
|
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
|
+

|
|
@@ -1,91 +1,126 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
2
|
-
Name: TimeFeatures
|
|
3
|
-
Version: 1.0.
|
|
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
|
-
|
|
23
|
-
|
|
24
|
-
|
|
25
|
-
|
|
26
|
-
|
|
27
|
-
|
|
28
|
-
|
|
29
|
-
|
|
30
|
-
|
|
31
|
-
|
|
32
|
-
|
|
33
|
-
|
|
34
|
-
|
|
35
|
-
|
|
36
|
-
|
|
37
|
-
|
|
38
|
-
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
58
|
-
|
|
59
|
-
###
|
|
60
|
-
|
|
61
|
-
|
|
62
|
-
|
|
63
|
-
pip install TimeFeatures
|
|
64
|
-
|
|
65
|
-
|
|
66
|
-
|
|
67
|
-
|
|
68
|
-
|
|
69
|
-
|
|
70
|
-
|
|
71
|
-
|
|
72
|
-
|
|
73
|
-
|
|
74
|
-
|
|
75
|
-
|
|
76
|
-
|
|
77
|
-
|
|
78
|
-
|
|
79
|
-
|
|
80
|
-
|
|
81
|
-
|
|
82
|
-
|
|
83
|
-
|
|
84
|
-
|
|
85
|
-
|
|
86
|
-
|
|
87
|
-
|
|
88
|
-
|
|
89
|
-
|
|
90
|
-
|
|
91
|
-
|
|
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
|
+

|
|
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
|
+

|
|
@@ -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
|