We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
add_vector
EDIT (@v0dro): changing this issue to include only the add_vector part.
Vectors 's @name can be useful. But daru does not seem to use its features.
@name
For example
df = Daru::DataFrame.new(a: [1,2,3], b: [4,5,6]) v = df.a df2 = Daru::DataFrame.new(c: [7,8,9], d: [10,11,12]) df2. add_vector "a", v
The vector knows its name, but the add_vector method requires the name of the vector.
(pseudocode)
df1 = DataFrame.new v = df["some_vector"] df2 = DataFrame df2. add v
The expected behaviour should be that add_vector should pick up the name of the vector by itself.
The text was updated successfully, but these errors were encountered:
This can be separated into two issues:
DataFrame
name
About 1, it cannot be helped since we use the name internally but add_vector is a legit usecase I will amend your issue accordingly.
Sorry, something went wrong.
No branches or pull requests
EDIT (@v0dro): changing this issue to include only the
add_vector
part.Vectors 's
@name
can be useful.But daru does not seem to use its features.
For example
The vector knows its name, but the
add_vector
method requires the name of the vector.(pseudocode)
The expected behaviour should be that
add_vector
should pick up the name of the vector by itself.The text was updated successfully, but these errors were encountered: