Learn R Programming

OpenRepGrid (version 0.1.9)

left: Move construct or element in grid to the left, right, up or down.

Description

Move construct or element in grid to the left, right, up or down.

Move element in grid to the right.

Move construct in grid upwards.

Move construct in grid downwards.

Usage

left(x, pos = 0)
right(x, pos = 0)
up(x, pos = 0)
down(x, pos = 0)

Arguments

x
repgrid object.
pos
Row (column) number of construct (element) to be moved leftwards, rightwards, upwards or downwards. The default is 0. For indexes outside the range of the grid no moving is done.

Value

repgrid object.repgrid objectrepgrid objectrepgrid object

Examples

Run this code
## Not run: 
#    x <- randomGrid()
#    left(x, 2)    # 2nd element to the left
#    right(x, 1)   # 1st element to the right
#    up(x, 2)      # 2nd construct upwards
#    down(x, 1)    # 1st construct downwards
# ## End(Not run)

Run the code above in your browser using DataLab