Displaying 4 results from an estimated 4 matches for "plotx".
Did you mean:
plot
2011 Nov 11
2
One step way to create data frame with variable "variable names"?
Suppose
plotx <- "someName"
modx <- "otherName"
plotxRange <- c(10,20)
modxVals <- c(1,2,3)
It often happens I want to create a dataframe or object with plotx or
modx as the variable names. But can't understand syntax to do that.
I can get this done in 2 steps, creating the...
2019 Jul 08
2
Salvar los plots a alta resolución la vez de incluirlos en documento
...ro
que, además de salir las imágenes incrustadas en los respectivos chunks,
también salve automáticamente la imágen en archivos a parte, para poder
presentarlas aparte. Bue, eso último, un desastre.
```{r fig.height=6, fig.retina=2}
lik.A.tlk <- likert(df.encuesta, grouping = df.encuesta$grupo)
plotx <- plot(lik.A.tlk)+
ggtitle(izenburuak[1])
print(plotx) # Este para que lo imprima en el documento
png('01.png') # Este para que lo guarde
print(plotx)
dev.off()
```
Y haciendo eso genera el 01.png, re chiquitito y de mala calidad.
Si le subo el tamaño con width =mucho, quedan todos l...
2007 Dec 02
1
odfWeave error
...as.logical(addContext), :
Error in the XML event driven parser for content_1.xml: error parsing
attribute name
The piece of the code is:
### code
############################################################
...
<<makeGraph, echo=T, results=xml>>=
fileplot='C:\\DADOS\\tmp\\plotx.emf'
win.metafile(fileplot)
plot( rnorm(300), col='red', t='l', lwd=2 ); grid()
dev.off()
@
<<insertGraph, echo=T, results=xml>>=
odfInsertPlot(file=fileplot, height=5, width=5 )
@
[[replacing trailing spam]]
Cleber Borges
### sessionInfo
######################...
2009 Jan 22
1
Problem with cex=0.1 when making jpegs
I am using the following script to make .jpg files.
jpeg('plotx.jpg')
ddat <-read.table("file",header=T)
attach(ddat)
tdat<-read.table("file1")
plot(xx1,yy1,type='p',pch=1,col="blue",cex=0.2,xlim=c(0,3.5),ylim=c(-75,75))
points(tdat,col="green",pch=1,cex=0.2)
dev.off()
The problem is that I want the p...