File: dev.create.Rd

package info (click to toggle)
r-cran-kutils 1.73%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,648 kB
  • sloc: sh: 13; makefile: 2
file content (34 lines) | stat: -rw-r--r-- 908 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/peek.R
\name{dev.create}
\alias{dev.create}
\title{Create a graphics device}
\usage{
dev.create(...)
}
\arguments{
\item{...}{Currently, height and width parameters that would be
suitable with dev.new}
}
\description{
This is a way to create a graphic device on screen that can
display R plots. It is performing the same purpose as R's dev.new,
but it overcomes the limitations of RStudio.  It is needed because
RStudio does not implement fully the functionality of
dev.new. This is suitable for Windows, Linux, and
Macintosh operating systems.
}
\details{
The argument in dev.new named noRStudioGD seems to be aimed at same
purpose. But it does not do what I want and documentation is too
sparse.
}
\examples{
\donttest{
if(interactive()) dev.create(height = 7, width = 3)
dev.off()
}
}
\author{
Paul Johnson <pauljohn@ku.edu>
}