-
Notifications
You must be signed in to change notification settings - Fork 0
Closed
Labels
featurea feature request or enhancementa feature request or enhancement
Description
Currently:
library("ppcli")
library("ppdf")
> cat_piece(marble_board(nrows = 5), annotate = T)
10─────────┐
9│◌ ◌ ◌ ◌ ◌│
8│ │
7│◌ ◌ ◌ ◌ ◌│
6│ │
5│◌ ◌ ◌ ◌ ◌│
4│ │
3│◌ ◌ ◌ ◌ ◌│
2│ │
1│◌ ◌ ◌ ◌ ◌│
└─────────┘
abcdefghijbut it could be nice if we could suppress those final axis labels (that don't refer to where a piece can go but the edge of the board):
> cat_piece(marble_board(nrows = 5), annotate = T, breaks = 1:9)
┌─────────┐
9│◌ ◌ ◌ ◌ ◌│
8│ │
7│◌ ◌ ◌ ◌ ◌│
6│ │
5│◌ ◌ ◌ ◌ ◌│
4│ │
3│◌ ◌ ◌ ◌ ◌│
2│ │
1│◌ ◌ ◌ ◌ ◌│
└─────────┘
abcdefghi
Reactions are currently unavailable
Metadata
Metadata
Assignees
Labels
featurea feature request or enhancementa feature request or enhancement