rinruby 1.1.0 → 1.1.1
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.
- data/lib/rinruby.rb +2 -2
- metadata +2 -2
data/lib/rinruby.rb
CHANGED
@@ -59,7 +59,7 @@
|
|
59
59
|
|
60
60
|
class RinRuby
|
61
61
|
|
62
|
-
VERSION = '1.1.
|
62
|
+
VERSION = '1.1.1'
|
63
63
|
|
64
64
|
require 'socket'
|
65
65
|
|
@@ -355,7 +355,7 @@ class RinRuby
|
|
355
355
|
#
|
356
356
|
#Of course it would be confusing to use the shorthand notation to assign a variable named eval, echo, or any other already defined function. RinRuby would assume you were calling the function, rather than trying to assign a variable.
|
357
357
|
#
|
358
|
-
#
|
358
|
+
#When assigning an array containing differing types of variables, RinRuby will follow R’s conversion conventions. An array that contains any Strings will result in a character vector in R. If the array does not contain any Strings, but it does contain a Float or a large integer (in absolute value), then the result will be a numeric vector of Doubles in R. If there are only integers that are suffciently small (in absolute value), then the result will be a numeric vector of integers in R.
|
359
359
|
|
360
360
|
def assign(name, value)
|
361
361
|
if assignable?(name)
|
metadata
CHANGED
@@ -40,12 +40,12 @@ requirements:
|
|
40
40
|
- R (http://www.r-project.org), an environment for statistical computing and graphics
|
41
41
|
authors:
|
42
42
|
- David B. Dahl
|
43
|
-
date: 2008-11-
|
43
|
+
date: 2008-11-27 06:00:00 +00:00
|
44
44
|
platform: ruby
|
45
45
|
test_files: []
|
46
46
|
|
47
47
|
version: !ruby/object:Gem::Version
|
48
|
-
version: 1.1.
|
48
|
+
version: 1.1.1
|
49
49
|
require_paths:
|
50
50
|
- lib
|
51
51
|
dependencies: []
|