search for: thiswork

Displaying 2 results from an estimated 2 matches for "thiswork".

Did you mean: thisworks
2004 Mar 11
1
Difficulties in interaction between R and latex (prosper)
...class[pdf,serpaggi,slideColor,colorBG]{prosper} \usepackage[latin1]{inputenc} \usepackage{graphicx} \begin{document} \begin{slide}{Demo} \includegraphics[width=\linewidth]{cm_test.eps} \end{slide} \begin{slide}{This one works} \includegraphics[width=\linewidth]{thisworks.eps} \end{slide} \end{document} The file cm_test.eps is produced using R. I left a file "thisworks.eps" there as a counterpoint (it was made using jgraph and it works fine). The resulting sl_demo.pdf is attached. It's supposed to be a slideshow. Under Adobe acrobat, when I...
2003 Jan 21
1
bug in CrossTable (package:gregmisc) (PR#2480)
...<- array(c( 24, 31, 2, 50, 4, 101, 16, 130, 0, 29, 3, 52, 3, 39, 11, 210)) dim(bugtab)<-c(4,4) bugtab<-t(bugtab) rownames(bugtab)<-c("a","b","c","d") colnames(bugtab)<-c("A","B","C","D") bugtab thisworks<-trunc(bugtab/10) thisworks library(gregmisc) # fisher.exact test works fine on small tables CrossTable(thisworks) # I suspect the bugtab table is too large CrossTable(bugtab)