Skip to content

Commit

Permalink
don't do arith on the row select of a frame
Browse files Browse the repository at this point in the history
  • Loading branch information
Kevin Normoyle committed Apr 2, 2014
1 parent f3b4966 commit 9d1efd7
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion py/testdir_single_jvm_fvec/test_exec2_unary.py
Original file line number Diff line number Diff line change
Expand Up @@ -191,7 +191,8 @@
"r.hex[,1]=r.hex[,1]+1",# Replace a col
# "r.hex[1,]=r.hex[1,]+1",
"r.hex[,ncol(r.hex)+1]=4",# Extend a col
"r.hex[nrow(r.hex)+1,]=4",
# can't do arith on the row
# "r.hex[nrow(r.hex)+1,]=4",
"a=ncol(r.hex); r.hex[,c(a+1,a+2)]=5",# Extend two cols
# doesn't work
# "table(r.hex)",
Expand Down

0 comments on commit 9d1efd7

Please sign in to comment.