Displaying 20 results from an estimated 1000 matches similar to: "Installing packages without clicking"
2005 Jul 01
1
Setting lattice boxplot's lines to black
Hi R users.
I'm using the lattice library and I need a print version for my graphics.
How Set I my boxplot's lines to black ????
tpl<-trellis.par.get("plot.line")
tpl$col<-"black"
trellis.par.set("plot.line", tpl)
Don't work. Boxplot's lines aren't black.
Thanks a lot.
This is my script.
library(lattice)
# I set background's
2007 Aug 02
2
Re : beamer error with R
Un texte encapsul? et encod? dans un jeu de caract?res inconnu a ?t? nettoy?...
Nom : non disponible
Url : https://stat.ethz.ch/pipermail/r-help/attachments/20070802/04c0f92e/attachment.pl
2012 Sep 20
2
Sweave - if \Sexpr{} than \SweaveInput{"my.Rnw"}
Depending on an R computation I would like to include an Sweave documents
in the main Sweave document.
How can I do it?
So I was thinking .... to use Latex features :
\newif\ifpaper
\ifpaper
\SweaveInput{"my1.Rnw"}
\else
\SweaveInput{"my2.Rnw"}
\fi
But how do I set paper to true or false given an \Sexpr ??
\papertrue % or
\paperfalse
Any ideas?
cheers
--
Witold
2005 Apr 26
2
writing a data frame in excel format
Hello
I know how read a file in excel format into a R data frame using the
RODBC library, but I don't know how write a R data frame in excel
format. I don't understand the instructions from RODBC user manual.
To read an excel file I use.
library(RODBC);
conex<-odbcConnectExcel("fis_quim.xls");
sqlTables(conex);
data<-sqlFetch(conex,"hoja1");
Suppose I
2007 Oct 10
3
(no subject)
Hello,
I problem is in the format of the date, my time series is like this:
2006070100 1244 61 62
2006070101 1221 60 60
2006070102 1214 60 60
2006070103 1194 59 59
2006070104 1182 58 58
2006070105 1178 58 58
2006070106 1176 58 58
2006070107 1173 58 58
2006 Sep 12
1
openssh (OpenBSD) , bsdauth and tis authsrv
nuqneH,
I've tried using TIS authsrv authentication via bsd auth and found
it quite limited. The most important restriction it does not log
ip and fqdn of the remote peer, nor the application name, to
the authentication server. It does not matter much for TIS authsrv,
but since other applications do provide such information, our
authsrv version uses it for extra authentication restrictions.
2009 Nov 04
1
[PATCH] nv10/exa: Spring-cleaning
* Kill the A8+A8 hack. Recent enough X servers (>=1.7) fall back to
ARGB glyphs for drivers not supporting A8 render targets.
* Kill all the global state. It doesn't matter a lot yet but it might
if we get multicard working at some point.
* Other random clean-ups with no functional changes.
Some numbers from x11perf -aa10text -aa24text -comppixwin10 -comppixwin500:
* Before, with A
2006 Dec 05
1
publicar tutorial en CRAN
Hola, a todos los usuarios de R. Me gustar?a saber que pasos hay que
seguir para que un manual o tutorial acerca de R escrito por un
usuario quede disponible en CRAN.
Escrib? un tutorial de Sweave en espa?ol y quiero colocarlo a
disposici?n de los usuarios de R pero no se cuales son los pasos a
seguir, a quien hay que dirigirlo y que requisitos se requieren para
eso.
2007 Jul 30
4
how to combine data of several csv-files
Hello,
I'm looking for a solution for the following problem:
1) I have a folder with several csv files; each contains a set of
measurement values
2) The measurements of each file belong to a position in a two
dimensional matrix (lets say "B02.csv" belongs to position 2,2
3) The size of the matrix is fix
4) I cannot assure to have a csv file for each position
5) Each position
2023 Nov 30
0
Quedo a sus ordenes
Hola muy buenos d?as.
La semana pasada le envie un correo sobre una invitaci?n al evento Las 8 Reglas Clave para ser un Asistente Ejecutivo Exitoso.
Le envio nuevamente de forma resumida la invitaci?n por si no tuvo tiempo de leerla, se trata de un curso para asistentes en formato online en vivo este 14 de diciembre.
En este evento se veran los temas de inteligencia emocional y adaptabilidad en
2010 Feb 03
1
Calculating subsets "on the fly" with ddply
Hi,
[I sent this to the plyr mailing list (late) last night, but it seems
to be lost in the moderation queue, so here's a shot to the broadeR
community]
Apologies in advance for being more verbose than necessary, but I'm
not even sure how to ask this question in the context of plyr, so ...
here goes.
As meaningless as this might be to do with the `iris` data, the spirit
of it is what
2005 Feb 07
1
[Bug 982] scp doesn't work with password authentication when copying from remote to remote
http://bugzilla.mindrot.org/show_bug.cgi?id=982
Summary: scp doesn't work with password authentication when
copying from remote to remote
Product: Portable OpenSSH
Version: 3.9p1
Platform: All
OS/Version: Linux
Status: NEW
Severity: normal
Priority: P2
Component: scp
2007 Feb 08
0
SIP Re-Invite behind a NAT
SetUp:
- Asterisk behind a NAT,
- Red Hat 9.0
- Asterisk 1.2.14
My Asterisk box is behind a NAT and I have a DiD from an ITSP. I have
my dial plan set up so that when outside callers dial the DiD, the
call is answered by my auto-attendant. The caller can then select who
they'd like to speak to and the call is transferred to the external
line associated with that person (usually a mobile
2023 Nov 23
0
Asistente Ejecutivo
Las 8 Reglas Clave para ser un Asistente Ejecutivo Exitoso
Evento Online 14 de Diciembre 2023
Este curso est? dise?ado para transformarte en un componente esencial dentro de tu organizaci?n. Te ense?a habilidades avanzadas, como la gesti?n de proyectos y la forma de alinear tus tareas con los objetivos de los ejecutivos. Su finalidad es permitirte mejorar en tu trabajo y fomentar tu desarrollo
2006 Nov 28
2
factor analysis using Principal Component Method
Is there any R function to perform factor analysis using Principal
Component Method?
why factanal() method is " always "mle" " ?
2007 Aug 21
2
Partial comparison in string vector
Hi list members
I have a vector of strings
x=c("w","ex","ee")
And I want to get a logical vector showing the positions where my search
string "e" matches the elements partially, i.e. is at least the left-hand
part of the target strings, i.e. I want to get a vector FALSE TRUE TRUE.
Any ideas?
Thanks
Steve Powell
proMENTE social research
research |
2012 Jan 10
3
problem installing packages
Hello,
I was using version 2.13.2 and I have just downloaded the latest version
2.14.1. However, I''m trying to install the packages I was using and when I
look for them in the packages list, I canĀ“t find many in the CRAN binaries
(e.g. "vegan"). I do find them in the CRAN sources but the installation
fails. I tried downloading the version 2.14.0 and I had the same problem. I
2007 Oct 11
0
Help Problems formatting date and using Regul function
Hello,
I problem is in the format of the date, my time series is like this:
2006070100 1244 61 62
2006070101 1221 60 60
2006070102 1214 60 60
2006070103 1194 59 59
2006070104 1182 58 58
2006070105 1178 58 58
2006070106 1176 58 58
2006070107 1173 58 58
2006 Sep 19
1
odfWeave help
Hi R users
I haven't run odfWeave example, R give me:
Setting wd to
C:\DOCUME~1\MARIOM~1\CONFIG~1\Temp\Rtmph2Nzqb/odfWeave19070343633
Copying C:/ARCHIV~1/R/R-23~1.1/library/odfWeave/examples/simple.odt
Decompressing ODF file using unzip -o "simple.odt"
Erro en odfWeave(demoFile, outputFile) : Error unzipping file
Adem?s: Warning message: unzip no encontrado
I have installed
2006 Mar 25
1
Some moved or copied messages get stuck in tmp
Hello.
I have seen in recent posts that there are other people
with this problem, and it is very important for me, as it
is the only cause for not putting Dovecot in production in
all mail servers in my University.
When moving/copying messages, some of them get stuck in the
tmp directory of the destination folder, effectively lost for
the user.
I have been tracing the problem, and it looks that