Displaying 20 results from an estimated 129 matches for "clo".
Did you mean:
cl
2012 Sep 15
5
create new variable with ifelse? (reproducible example)
Dear R users,
I have a reproducible data and try to create new variable "clo" is 1 if
know variable is equal to "very well" or "fairly well" and getalong is 4 or
5
otherwise it is 0.
rep_data<- read.table(header=TRUE, text="
id1 id2 know getalong
100000016_a1 100000016_a2 very well 4
100000035_a1 100...
2007 May 06
1
Sweave and size10.clo
...8g> and hyphenation patterns for english, dumylang, nohyphenation,
ge
rman, ngerman, french, loaded.
("C:\Program Files\MiKTeX 2.5\tex\latex\base\article.cls"
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
("C:\Program Files\MiKTeX 2.5\tex\latex\base\size10.clo"))latex: Windows API
err
or 123: The filename, directory name, or volume label syntax is incorrect.
The problem seems to be the size10.clo file and is only a problem for me
with the use of Sweave.sty. Any ideas?
--
Tom Schenk Jr.
Department of Economics
Iowa State University
tschenk@iastate....
2005 Jan 13
1
how to use solve.QP
...:\\Program Files\\R\\tools")
n<-100
m<-200
rho<-0.7
sigma<-0.2
mu<-0.1
Cov <- matrix(rho*sigma*sigma, ncol=n, nrow=n)
diag(Cov) <- rep(sigma*sigma, n)
S <- 1+matrix(mvrnorm(m, rep(mu, n), Sigma=Cov), ncol=n)
#The problem is formulated as minimize t(b) Cov b
#subject to cLo <= A <= cUp
#and bLo=0 <= w <= 1=bUp
Cov <- var(S)
mu <- apply(S, 2, mean)
mu.target <- 0.1
#subject to cLo <= A <= cUp and bLo=0 <= b <= 1=bUp
A <- rbind(1,mu)
cLo <- c(1, mu.target)
cUp <- c(1, Inf)
bLo <- rep(0, n)
bUp <- rep(1, n)
#I convert [cL...
2005 Sep 28
1
confidence variability bands for kernel estimators
I'm using nonparametric regression (packeges ksmooth and ks). My question:
is there any way to compute confidence bands (or variability bands) with R.
Confidence bands for functions are intervals [CLO(x);CUP(x)] such that with
probability 1-alpha the true curve is covered by the band [CLO(x);CUP(x)].
Thanks very much for any help you can offer.
Michael G??lger
2004 Jul 01
1
\middle in Rd.sty conflicts with newer LaTeX?
...LaTeX2e <2000/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german, ngerman, i
talian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2000/05/19 v1.4b Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size10.clo))
No file test.aux.
(test.aux) )
No pages of output.
Transcript written on test.log.
but fails on a Mac with the TeX installed using GW's i-installer:
bass$ latex test.tex
This is e-TeXk, Version 3.141592-2.1 (Web2C 7.5.2)
\write18 enabled.
%&-line parsing enabled.
(/usr/local/teTeX/s...
2005 Aug 05
3
Latex error with Sweave example
...-1.tex
LaTeX2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german,
ngerman, du
mylang, nohyphenation, loaded.
(C:\usr\texmf\tex\latex\base\article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(C:\usr\texmf\tex\latex\base\size10.clo
File: size10.clo 2004/02/16 v1.4f Standard LaTeX file (size option)
)
\c at part=\count79
\c at section=\count80
\c at subsection=\count81
\c at subsubsection=\count82
\c at paragraph=\count83
\c at subparagraph=\count84
\c at figure=\count85
\c at table=\count86
\abovecaptionskip=\skip41
\belowcap...
2005 Feb 10
2
Problem with "R CMD Rd2dvi": Rd.sty not found
...X2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german, ngerman,
dumylang, nohyphenation, loaded.
(C:\Program Files\latex\tex\latex\base\book.cls
Document Class: book 2004/02/16 v1.4f Standard LaTeX document class
(C:\Program Files\latex\tex\latex\base\bk10.clo))
! LaTeX Error: File `Rd.sty' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)
Enter file name:
! Emergency stop.
<read *>
l.4 \usepackage
{makeidx}
No pages of output.
Transcript written on Rd2.log.
Couldn't find...
2008 Apr 16
2
count of active tcp sockets?
Hi List,
Is there an easy way to get a count of the number of active socket
connections, or even better, number of socket connections in the
time_wait state? (Something lightweight... under /proc/sys/net/ipv4/?
I'd like to avoid the impact of listing out all the connections a-la
netstat.)
Thanks!
-Jeff
2002 May 16
2
2.2.4 and "veto files" -> cpu maxed out
...me and cannot be killed but with "kill -9".
This is the last part of the smbd log
[2002/05/16 05:49:51, 3] smbd/sec_ctx.c:set_sec_ctx(319)
3 user groups:
100 6 19
[2002/05/16 05:49:51, 3] smbd/trans2.c:call_trans2findfirst(863)
call_trans2findfirst: dirtype = 22, maxentries = 512, close_after_first=0,
clo
se_if_end = 1 requires_resume_key = 1 level = 260, max_data_bytes = 65535
[2002/05/16 05:49:51, 3] lib/util.c:unix_clean_name(387)
unix_clean_name [/*]
[2002/05/16 05:49:51, 3] lib/util.c:unix_clean_name(387)
unix_clean_name [*]
[2002/05/16 05:49:51, 3] lib/util.c:unix_clea...
2012 Feb 07
1
replace elements of a data frame
...df.
Here is a short df :
> names<-c("BO","C","CL")
> price<-c("10","25","20")
> df<-data.frame(names,price)
I want to replace "BO" by "BOB", "C" by "CR", "CL" by "CLO", and the list is more long.
I can do that for each element:
>df[df=="BO"]<-"BOB"
But my df is bigger indeed with other elements.
I was thinking using replace(), but can't get any clean result ( NA or all elements replaced with only one), neither with sapply()...
2007 Dec 06
1
RGtk2 + tcltk combination problem (PR#10497)
Full_Name: Hans Dieter
Version: 2.6.1
OS: windows
Submission from: (NULL) (217.93.91.19)
Hi all,
first I used a TCL/TK GUI, after my work I cloed it and opend an RGTK2 GUI.
Now I have the problem, the RGTK2 GUI will not refresh correctly and basic
user-commands ( close windows ) dosen't work.
Greetings
Dieter
2006 Jul 31
1
Sweave error in example code
...8g> and hyphenation patterns for english, dumylang, nohyphenation, ge
rman, ngerman, french, loaded.
("C:\Program Files\MiKTeX 2.5\tex\latex\base\article.cls"
Document Class: article 2005/09/16 v1.4f Standard LaTeX document class
("C:\Program Files\MiKTeX 2.5\tex\latex\base\size10.clo"))
("C:\Program Files\MiKTeX 2.5\tex\latex\ltxmisc\a4wide.sty"
("C:\Program Files\MiKTeX 2.5\tex\latex\ntgclass\a4.sty"))
! Missing \endcsname inserted.
<to be read again>
\protect
l.11 \begin
{document}
?
[[alternative HTML version d...
2004 Jan 29
2
Finding Sweave.sty and other problems
...(example-3.tex
LaTeX2e <2001/06/01>
Babel <v3.7h> and hyphenation patterns for english, french, german,
ngerman, du
mylang, nohyphenation, loaded.
(C:\texmf\tex\latex\base\article.cls
Document Class: article 2001/04/21 v1.4e Standard LaTeX document class
(C:\texmf\tex\latex\base\size10.clo
File: size10.clo 2001/04/21 v1.4e Standard LaTeX file (size option)
)
\c at part=\count79
\c at section=\count80
\c at subsection=\count81
\c at subsubsection=\count82
\c at paragraph=\count83
\c at subparagraph=\count84
\c at figure=\count85
\c at table=\count86
\abovecaptionskip=\skip41
\belowcap...
2000 Jun 28
1
Rd2dvi
...b2C 7.3) (Rd2.tex LaTeX2e <1998/12/01> Babel
<v3.6k> and hyphenation patterns for american, french, german, ngerman,
nohyphenation, loaded. (/usr/share/texmf/tex/latex/base/book.cls
Document Class: book 1999/01/07 v1.4a Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/bk10.clo)) (Rd.sty
(/usr/share/texmf/tex/latex/base/ifthen.sty) ...
(/usr/share/texmf/tex/latex/base/makeidx.sty) Writing index file Rd2.idx
No file Rd2.aux. (/usr/share/texmf/tex/latex/ae/t1aess.fd)
! Missing $ inserted. <inserted text> $ l.12
\Header{00General_Description}{Syskern}...
2005 Oct 02
1
Problem Sweaving vignettes: MiKTeX's texi2dvi reports errors
...x
LaTeX2e <2003/12/01>
Babel <v3.8a> and hyphenation patterns for english, french, german, ngerman,
du
mylang, nohyphenation, loaded.
(C:\MiKTex\texmf\tex\latex\base\article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(C:\MiKTex\texmf\tex\latex\base\size10.clo))
(C:\MiKTex\texmf\tex\latex\ltxmisc\a4wide.sty
(C:\MiKTex\texmf\tex\latex\ntgclass\a4.sty))
! Missing \endcsname inserted.
<to be read again>
\protect
l.11 \begin
{document}
?
[ Here, I hit a <CR>, and get the following:]
! LaTeX Error: Missing \begin{d...
2008 Oct 28
1
Sweave Error
...ian, slovenian, estonian, esperanto, upperso
rbian, indonesian, polish, portuguese, spanish, catalan, galician, swedish, loa
ded.
(/usr/share/texmf-texlive/tex/latex/base/report.cls
Document Class: report 2005/09/16 v1.4f Standard LaTeX document class
(/usr/share/texmf-texlive/tex/latex/base/size10.clo))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsmath.sty
For additional information on amsmath, use the `?' option.
(/usr/share/texmf-texlive/tex/latex/amsmath/amstext.sty
(/usr/share/texmf-texlive/tex/latex/amsmath/amsgen.sty))
(/usr/share/texmf-texlive/tex/latex/amsmath/amsbsy.sty)
(/usr/sha...
2013 Mar 25
1
Rd.sty not found
...erbian,
serbianc, s
lovak, slovenian, spanish, swedish, turkish, turkmen, ukrainian,
uppersorbian,
welsh, loaded.
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/book.cls
Document Class: book 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2012/texmf-dist/tex/latex/base/bk10.clo))
! LaTeX Error: File `Rd.sty' not found.
Type X to quit or <RETURN> to proceed,
or enter new name. (Default extension: sty)
Enter file name:
! Emergency stop.
<read *>
l.4 \usepackage
{makeidx}^^M
! ==> Fatal error occurred, no output PDF file prod...
2010 Jun 16
5
Latex and r
...t, serbian, slovak, slovenian, span
ish, swedish, turkish, ukenglish, ukrainian, uppersorbian, welsh, loaded.
(/usr/local/texlive/2009/texmf-dist/tex/latex/base/report.cls
Document Class: report 2007/10/19 v1.4h Standard LaTeX document class
(/usr/local/texlive/2009/texmf-dist/tex/latex/base/size10.clo))
(/usr/local/texlive/2009/texmf-dist/tex/latex/geometry/geometry.sty
(/usr/local/texlive/2009/texmf-dist/tex/latex/graphics/keyval.sty)
(/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifpdf.sty)
(/usr/local/texlive/2009/texmf-dist/tex/generic/oberdiek/ifvtex.sty)
(/usr/local/texlive/2009/...
2008 Apr 12
1
2.7.0 beta (rev 45263) failing 'make vignettes'
...n, magyar, norsk, polis
h, portuges, romanian, russian, serbian, slovak, slovene, spanish, swedish, tur
kish, ukrainian, nohyphenation, loaded.
(/usr/share/texmf/tex/latex/base/article.cls
Document Class: article 2004/02/16 v1.4f Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/size10.clo))
! LaTeX Error: File `Sweave.sty' not found.
At this point if I tell texi2dvi where to find Sweave.sty, the vignettes
builds.
Is this intentional and I have not done something I should have? (I did
check the relevant section of the installation manual.) Past versions
have built vignettes co...
2002 Jul 17
2
Problems with make pdf (R-patched_2002-07-15.tar.gz)
...fg]
LaTeX2e <2000/06/01>
Babel <v3.7h> and hyphenation patterns for american, french, german,
ngerman, n
ohyphenation, loaded.
(refman.tex (/usr/share/texmf/tex/latex/base/book.cls
Document Class: book 2000/05/19 v1.4b Standard LaTeX document class
(/usr/share/texmf/tex/latex/base/bk10.clo)) (../../share/texmf/Rd.sty
(/usr/share/texmf/tex/latex/base/ifthen.sty)
(many other /usr/share/texmf/tex/latex/base/...)
Implicit mode ON; LaTeX internals redefined
(/usr/share/texmf/tex/latex/hyperref/backref.sty))
*hyperref using default driver hpdftex*
(/usr/share/texmf/tex/latex/hyperref/hpd...