search for: sconcord

Displaying 9 results from an estimated 9 matches for "sconcord".

Did you mean: concord
2016 Jun 18
5
Error in texi2dvi
...//r-forge.r-project.org/R/?group_id=235&log=build_src&pkg=sos&flavor=patched", ends as follows: Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, : Running 'texi2dvi' on 'sos.tex' failed. LaTeX errors: ! Undefined control sequence. l.1 \Sconcordance {concordance:sos.tex:sos.Rnw:% The control sequence at the end of the top line of your error message was never \def'ed. If you have Calls: -> texi2pdf -> texi2dvi Execution halted I stepped through the vignette line by line without seeing an error message....
2016 May 13
1
LaTeX errors new with R 3.3.0
...I could use help understanding an error reported by "R CMD build sos" that's new with R 3.3.0: Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, : Running 'texi2dvi' on 'sos.tex' failed. LaTeX errors: ! Undefined control sequence. l.1 \Sconcordance {concordance:sos.tex:sos.Rnw:% The control sequence at the end of the top line of your error message was never \def'ed. If you have Calls: -> texi2pdf -> texi2dvi [http://r-forge.r-project.org/R/?group_id=235&log=build_src&pkg=sos&flavor=patched]...
2008 Aug 05
0
patchDVI update: SyncTex support
...previewers and who is interested in this to test the new code. It's available on http://www.stats.uwo.ca/faculty/murdoch/software/ (near the bottom of the page). Including the concordance info into a .pdf needs a patch to Sweave, and to Sweave.sty: Sweave should wrap the concordance in \Sconcordance{}, instead of \special{}. Sweave.sty should have this macro added: \newcommand{\Sconcordance}[1]{% \ifx\pdfoutput\undefined% \csname newcount\endcsname\pdfoutput\fi% \ifcase\pdfoutput\special{#1}% \else\immediate\pdfobj{#1}\fi} Improvements to this macro would also be appreciated. Duncan M...
2012 Apr 04
3
Rgui maintains open file handles after Sweave error
...\RequirePackage[T1]{fontenc} \RequirePackage{ae} }{}% \DefineVerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl} \DefineVerbatimEnvironment{Soutput}{Verbatim}{} \DefineVerbatimEnvironment{Scode}{Verbatim}{fontshape=sl} \newenvironment{Schunk}{}{} \newcommand{\Sconcordance}[1]{% \ifx\pdfoutput\undefined% \csname newcount\endcsname\pdfoutput\fi% \ifcase\pdfoutput\special{#1}% \else\immediate\pdfobj{#1}\fi}
2016 Jun 18
0
Error in texi2dvi
...35&log=build_src&pkg=sos&flavor=patched", > ends as follows: > > > Error in texi2dvi(file = file, pdf = TRUE, clean = clean, quiet = quiet, : > Running 'texi2dvi' on 'sos.tex' failed. > LaTeX errors: > ! Undefined control sequence. > l.1 \Sconcordance > {concordance:sos.tex:sos.Rnw:% > The control sequence at the end of the top line > of your error message was never \def'ed. If you have > Calls: -> texi2pdf -> texi2dvi > Execution halted > > > I stepped through the vignette line by...
2009 Jun 26
0
Modifying Sweave.sty to allow escapes with fancyvrb package in LaTeX
...VerbatimEnvironment{Sinput}{Verbatim}{fontshape=sl} \DefineVerbatimEnvironment{Sinput}{Verbatim}{formatcom=\lstset{fancyvrb=true},commandchars=\\\{\}} \DefineVerbatimEnvironment{Soutput}{Verbatim}{} \DefineVerbatimEnvironment{Scode}{Verbatim}{fontshape=sl} \newenvironment{Schunk}{}{} \newcommand{\Sconcordance}[1]{% \ifx\pdfoutput\undefined% \csname newcount\endcsname\pdfoutput\fi% \ifcase\pdfoutput\special{#1}% \else\immediate\pdfobj{#1}\fi} -- Frank E Harrell Jr Professor and Chair School of Medicine Department of Biostatistics Vanderbilt University...
2008 Oct 20
2
R 2.8.0 is released
...statistics, and gains a 'tol' argument to allow highly correlated responses to be explored (with probable loss of accuracy). Similar changes have been made to anova.mlm() and anova.mlmlist(). o Sweave() now writes concordance information inside a \Sconcordance LaTeX macro, which allows it to be inserted into PDF output. o system.time() now uses lazy evaluation rather than eval/substitute, which results in more natural scoping. (PR#11169) o In table(), 'exclude=NULL' now does something also for factor argu...
2008 Oct 20
2
R 2.8.0 is released
...statistics, and gains a 'tol' argument to allow highly correlated responses to be explored (with probable loss of accuracy). Similar changes have been made to anova.mlm() and anova.mlmlist(). o Sweave() now writes concordance information inside a \Sconcordance LaTeX macro, which allows it to be inserted into PDF output. o system.time() now uses lazy evaluation rather than eval/substitute, which results in more natural scoping. (PR#11169) o In table(), 'exclude=NULL' now does something also for factor argu...
2012 Mar 25
2
avoiding for loops
I have data that looks like this: > df1 group id 1 red A 2 red B 3 red C 4 blue D 5 blue E 6 blue F I want a list of the groups containing vectors with the ids. I am avoiding subset(), as it is only recommended for interactive use. Here's what I have so far: df1 <- data.frame(group=c("red", "red", "red", "blue",