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
I was working with DataFrame initialization and think following would be convenient to have. What are your thougts?
# Initialization with array of vectors or arrays without specifying order.
>>> a=b=(1..3).dv
>>> Daru::DataFrame.new[a,b]#<Daru::DataFrame:27152780 @name = 9e6a7851-96f6-43cb-93af-3ef59081e9a2 @size = 3>01011122233# Initialization with array of Enumerable like ranges without specifying order.
>>> Daru::DataFrame.new[1..3,1..3]#<Daru::DataFrame:26079900 @name = b0fb36c0-fd41-4a7e-9a02-36823cc9e1a5 @size = 3>01011122233
The text was updated successfully, but these errors were encountered:
* Adds default order for Daru::DataFrame
Rspec test added, has been written in the older format to main consistency. This will be easier to change while re-writing all tests to modern specifications file-wise. RDoc documentation has also been added.
* Refines code with ||=
* Tries resolving rubocop 0.48.1 release offenses - try #1
* Fixes Rdoc - example of Daru::DataFrame initialize without order
I was working with DataFrame initialization and think following would be convenient to have. What are your thougts?
The text was updated successfully, but these errors were encountered: