Skip to content

Commit

Permalink
expect vector of vectors in df[rows,cols]=v on RHS
Browse files Browse the repository at this point in the history
  • Loading branch information
bkamins committed Apr 28, 2019
1 parent 4c34717 commit 03982f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/lib/indexing.md
Original file line number Diff line number Diff line change
Expand Up @@ -151,7 +151,7 @@ If it is not performed a description explicitly mentions that the data is assign
* `length(v)` must be equal to `length(cols)`
* column names in `v` must be the same as selected by `cols`
* an operation `df[row, col] = v[col]` for `col in cols` is performed
* if `v` is an iterable:
* if `v` is a `AbstractVector{<:AbstractVector}`:
* `length(v)` must be equal to `length(cols)`
* an operation `df[row, col] = v[i]` for `(i, col) in enumerate(cols)` is performed
* otherwise an error is thrown
Expand Down

0 comments on commit 03982f0

Please sign in to comment.