nexosis_api 2.0.1 → 2.1.0

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 (43) hide show
  1. checksums.yaml +4 -4
  2. data/lib/nexosis_api.rb +11 -11
  3. data/lib/nexosis_api/algorithm.rb +22 -22
  4. data/lib/nexosis_api/algorithm_contestant.rb +43 -43
  5. data/lib/nexosis_api/anomaly_scores.rb +19 -0
  6. data/lib/nexosis_api/calendar_jointarget.rb +35 -35
  7. data/lib/nexosis_api/classifier_result.rb +25 -25
  8. data/lib/nexosis_api/classifier_scores.rb +26 -0
  9. data/lib/nexosis_api/client.rb +120 -118
  10. data/lib/nexosis_api/client/contest.rb +66 -66
  11. data/lib/nexosis_api/client/datasets.rb +155 -155
  12. data/lib/nexosis_api/client/imports.rb +141 -141
  13. data/lib/nexosis_api/client/models.rb +121 -108
  14. data/lib/nexosis_api/client/sessions.rb +308 -213
  15. data/lib/nexosis_api/client/views.rb +105 -105
  16. data/lib/nexosis_api/column.rb +50 -50
  17. data/lib/nexosis_api/column_options.rb +38 -38
  18. data/lib/nexosis_api/column_role.rb +19 -19
  19. data/lib/nexosis_api/column_type.rb +23 -23
  20. data/lib/nexosis_api/dataset_data.rb +22 -22
  21. data/lib/nexosis_api/dataset_jointarget.rb +18 -18
  22. data/lib/nexosis_api/dataset_model.rb +26 -26
  23. data/lib/nexosis_api/dataset_summary.rb +33 -33
  24. data/lib/nexosis_api/http_exception.rb +28 -28
  25. data/lib/nexosis_api/impact_metric.rb +22 -22
  26. data/lib/nexosis_api/imports_response.rb +74 -74
  27. data/lib/nexosis_api/join.rb +63 -63
  28. data/lib/nexosis_api/link.rb +18 -18
  29. data/lib/nexosis_api/message.rb +19 -19
  30. data/lib/nexosis_api/metric.rb +16 -16
  31. data/lib/nexosis_api/model_summary.rb +66 -66
  32. data/lib/nexosis_api/paged_array.rb +35 -35
  33. data/lib/nexosis_api/predict_response.rb +35 -35
  34. data/lib/nexosis_api/session.rb +122 -118
  35. data/lib/nexosis_api/session_contest.rb +30 -30
  36. data/lib/nexosis_api/session_response.rb +29 -33
  37. data/lib/nexosis_api/session_result.rb +27 -27
  38. data/lib/nexosis_api/session_selection_metrics.rb +20 -20
  39. data/lib/nexosis_api/time_interval.rb +15 -15
  40. data/lib/nexosis_api/view_data.rb +14 -14
  41. data/lib/nexosis_api/view_definition.rb +64 -64
  42. data/nexosisapi.gemspec +20 -20
  43. metadata +5 -3
@@ -1,15 +1,15 @@
1
- module NexosisApi
2
- # constants for the date/time interval (e.g. Day, Hour) at which predictions should be generated.
3
- module TimeInterval
4
- # results summarized by hour
5
- HOUR = :hour
6
- # results summarized by day. Default option.
7
- DAY = :day
8
- # results summarized by week
9
- WEEK = :week
10
- # results summarized by month
11
- MONTH = :month
12
- # results summarized by year
13
- YEAR = :year
14
- end
15
- end
1
+ module NexosisApi
2
+ # constants for the date/time interval (e.g. Day, Hour) at which predictions should be generated.
3
+ module TimeInterval
4
+ # results summarized by hour
5
+ HOUR = :hour
6
+ # results summarized by day. Default option.
7
+ DAY = :day
8
+ # results summarized by week
9
+ WEEK = :week
10
+ # results summarized by month
11
+ MONTH = :month
12
+ # results summarized by year
13
+ YEAR = :year
14
+ end
15
+ end
@@ -1,14 +1,14 @@
1
- module NexosisApi
2
- # Class to hold the parsed results of a view data retrieval
3
- # @since 1.2.0
4
- class ViewData < ViewDefinition
5
- def initialize(viewdata_hash)
6
- @data = viewdata_hash['data']
7
- super(viewdata_hash.reject { |k| k == 'data' })
8
- end
9
-
10
- # An array of hashes representing the processed data of the view
11
- # @return [Array of Hash] - one hash per row of data where key = column name
12
- attr_accessor :data
13
- end
14
- end
1
+ module NexosisApi
2
+ # Class to hold the parsed results of a view data retrieval
3
+ # @since 1.2.0
4
+ class ViewData < ViewDefinition
5
+ def initialize(viewdata_hash)
6
+ @data = viewdata_hash['data']
7
+ super(viewdata_hash.reject { |k| k == 'data' })
8
+ end
9
+
10
+ # An array of hashes representing the processed data of the view
11
+ # @return [Array of Hash] - one hash per row of data where key = column name
12
+ attr_accessor :data
13
+ end
14
+ end
@@ -1,64 +1,64 @@
1
- module NexosisApi
2
- # class to hold the parsed results of a view
3
- # @since 1.2.0
4
- class ViewDefinition
5
- def initialize(view_hash)
6
- view_hash.each do |k, v|
7
- if k == 'viewName'
8
- @view_name = v unless v.nil?
9
- elsif k == 'dataSetName'
10
- @dataset_name = v unless v.nil?
11
- elsif k == 'columns'
12
- next if v.nil?
13
- @column_metadata = v.reject { |value| value.nil? } .map { |col_name, col_hash| NexosisApi::Column.new(col_name, col_hash)}
14
- elsif k == 'joins'
15
- next if v.nil?
16
- @joins = v.reject(&:nil?).map { |join| NexosisApi::Join.new(join) }
17
- elsif k == 'isTimeSeries'
18
- @is_timeseries = v
19
- end
20
- end
21
- end
22
-
23
- # The name of the view uploaded and saved
24
- # @return [String]
25
- attr_accessor :view_name
26
-
27
- # The name of the dataset on the left of the join
28
- # @return [String]
29
- attr_accessor :dataset_name
30
-
31
- # Descriptive information about the columns
32
- # @return [Array of NexosisApi::Column]
33
- attr_accessor :column_metadata
34
-
35
- # The join configuration for this view
36
- # @return [Array of NexosisApi::Join]
37
- attr_accessor :joins
38
-
39
- # Is this view based on time series data?
40
- # @since 1.3.0
41
- attr_accessor :is_timeseries
42
-
43
- # Is this view based on time series data?
44
- # @since 1.3.0
45
- alias_method :timeseries?, :is_timeseries
46
-
47
- # Provides a custom hash which matches json of api request
48
- def to_json
49
- hash = {}
50
- hash['dataSetName'] = dataset_name
51
- if column_metadata.nil? == false
52
- hash['columns'] = {}
53
- column_metadata.each do |column|
54
- hash['columns'].merge!(column.to_hash)
55
- end
56
- end
57
- hash['joins'] = []
58
- joins.each do |join|
59
- hash['joins'] << join.to_hash
60
- end
61
- hash.to_json
62
- end
63
- end
64
- end
1
+ module NexosisApi
2
+ # class to hold the parsed results of a view
3
+ # @since 1.2.0
4
+ class ViewDefinition
5
+ def initialize(view_hash)
6
+ view_hash.each do |k, v|
7
+ if k == 'viewName'
8
+ @view_name = v unless v.nil?
9
+ elsif k == 'dataSetName'
10
+ @dataset_name = v unless v.nil?
11
+ elsif k == 'columns'
12
+ next if v.nil?
13
+ @column_metadata = v.reject { |value| value.nil? } .map { |col_name, col_hash| NexosisApi::Column.new(col_name, col_hash)}
14
+ elsif k == 'joins'
15
+ next if v.nil?
16
+ @joins = v.reject(&:nil?).map { |join| NexosisApi::Join.new(join) }
17
+ elsif k == 'isTimeSeries'
18
+ @is_timeseries = v
19
+ end
20
+ end
21
+ end
22
+
23
+ # The name of the view uploaded and saved
24
+ # @return [String]
25
+ attr_accessor :view_name
26
+
27
+ # The name of the dataset on the left of the join
28
+ # @return [String]
29
+ attr_accessor :dataset_name
30
+
31
+ # Descriptive information about the columns
32
+ # @return [Array of NexosisApi::Column]
33
+ attr_accessor :column_metadata
34
+
35
+ # The join configuration for this view
36
+ # @return [Array of NexosisApi::Join]
37
+ attr_accessor :joins
38
+
39
+ # Is this view based on time series data?
40
+ # @since 1.3.0
41
+ attr_accessor :is_timeseries
42
+
43
+ # Is this view based on time series data?
44
+ # @since 1.3.0
45
+ alias_method :timeseries?, :is_timeseries
46
+
47
+ # Provides a custom hash which matches json of api request
48
+ def to_json
49
+ hash = {}
50
+ hash['dataSetName'] = dataset_name
51
+ if column_metadata.nil? == false
52
+ hash['columns'] = {}
53
+ column_metadata.each do |column|
54
+ hash['columns'].merge!(column.to_hash)
55
+ end
56
+ end
57
+ hash['joins'] = []
58
+ joins.each do |join|
59
+ hash['joins'] << join.to_hash
60
+ end
61
+ hash.to_json
62
+ end
63
+ end
64
+ end
@@ -1,21 +1,21 @@
1
- # coding: utf-8
2
- lib = File.expand_path('../lib', __FILE__)
3
- $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
-
5
- Gem::Specification.new do |spec|
6
- spec.add_development_dependency 'bundler', '~> 1.0'
7
- spec.add_dependency 'httparty', '>= 0.15'
8
- spec.authors = ["Nexosis,Inc"]
9
- spec.description = %q{Nexosis API client}
10
- spec.email = ['support@nexosis.com']
11
- spec.files = %w(nexosisapi.gemspec)
12
- spec.files += Dir.glob("lib/**/*.rb")
13
- spec.homepage = 'https://github.com/nexosis/nexosisclient-rb'
14
- spec.licenses = ['Apache-2.0']
15
- spec.name = 'nexosis_api'
16
- spec.require_paths = ['lib']
17
- spec.required_ruby_version = '>= 2.0.0'
18
- spec.summary = "Ruby client for working with the Nexosis API"
19
- spec.version = '2.0.1'
20
- spec.metadata["yard.run"] = "yri"
1
+ # coding: utf-8
2
+ lib = File.expand_path('../lib', __FILE__)
3
+ $LOAD_PATH.unshift(lib) unless $LOAD_PATH.include?(lib)
4
+
5
+ Gem::Specification.new do |spec|
6
+ spec.add_development_dependency 'bundler', '~> 1.0'
7
+ spec.add_dependency 'httparty', '>= 0.15'
8
+ spec.authors = ["Nexosis,Inc"]
9
+ spec.description = %q{Nexosis API client}
10
+ spec.email = ['support@nexosis.com']
11
+ spec.files = %w(nexosisapi.gemspec)
12
+ spec.files += Dir.glob("lib/**/*.rb")
13
+ spec.homepage = 'https://github.com/nexosis/nexosisclient-rb'
14
+ spec.licenses = ['Apache-2.0']
15
+ spec.name = 'nexosis_api'
16
+ spec.require_paths = ['lib']
17
+ spec.required_ruby_version = '>= 2.0.0'
18
+ spec.summary = "Ruby client for working with the Nexosis API"
19
+ spec.version = '2.1.0'
20
+ spec.metadata["yard.run"] = "yri"
21
21
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: nexosis_api
3
3
  version: !ruby/object:Gem::Version
4
- version: 2.0.1
4
+ version: 2.1.0
5
5
  platform: ruby
6
6
  authors:
7
7
  - Nexosis,Inc
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2017-12-28 00:00:00.000000000 Z
11
+ date: 2018-01-12 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: bundler
@@ -48,8 +48,10 @@ files:
48
48
  - lib/nexosis_api.rb
49
49
  - lib/nexosis_api/algorithm.rb
50
50
  - lib/nexosis_api/algorithm_contestant.rb
51
+ - lib/nexosis_api/anomaly_scores.rb
51
52
  - lib/nexosis_api/calendar_jointarget.rb
52
53
  - lib/nexosis_api/classifier_result.rb
54
+ - lib/nexosis_api/classifier_scores.rb
53
55
  - lib/nexosis_api/client.rb
54
56
  - lib/nexosis_api/client/contest.rb
55
57
  - lib/nexosis_api/client/datasets.rb
@@ -105,7 +107,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
105
107
  version: '0'
106
108
  requirements: []
107
109
  rubyforge_project:
108
- rubygems_version: 2.5.2
110
+ rubygems_version: 2.6.11
109
111
  signing_key:
110
112
  specification_version: 4
111
113
  summary: Ruby client for working with the Nexosis API