A comprehensive guide to common tensor manipulation patterns using einops and PyTorch.
R Dev Container
Refining the R Dev Container for debugging and local use
Avinab Neogy(@avinab-neogy)
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Index: src/library/grid/R/viewport.R | |
| =================================================================== | |
| --- src/library/grid/R/viewport.R (revision 87829) | |
| +++ src/library/grid/R/viewport.R (working copy) | |
| @@ -454,12 +454,12 @@ | |
| extension <- rep(extension, length.out = 2) | |
| if (is.null(xscale)) { | |
| if (is.null(xData)) | |
| - stop("must specify at least one of 'x' or 'xscale'") | |
| + stop("must specify at least one of 'xData' or 'xscale'") |

