search for: courser

Displaying 3 results from an estimated 3 matches for "courser".

Did you mean: course
2007 Mar 13
2
Sweave question: prevent expansion of unevaluated reused code chunk
...e able to do something like this, where the "combined" chunk prints out in the final LaTeX document essentially verbatim. In particular, I want to see the "<<chunk1>>" unexpanded in that block, since this gives me a nice conceptual overview of the algorithm. (Of courser, this is more useful when chunk1 and chunk2 are much longer than they are in this example....) Is there an option that allows me to get this behavior? Thanks, Kevin
2018 Sep 23
0
Dual setup next to radeon not working
...oration Device 01b3 (rev a3) 04:01.0 PCI bridge: NVIDIA Corporation Device 01b3 (rev a3) 05:00.0 VGA compatible controller: NVIDIA Corporation NV43 [Quadro NVS 440] (rev a2) 06:00.0 VGA compatible controller: NVIDIA Corporation NV43 [Quadro NVS 440] (rev a2) After starting gnome I get the mouse courser visible with: xrandr --auto --setprovideroutputsource 1 0 --auto But no visible windows of any kind. The logs are filled with: $ grep nouveau /var/log/kern.log | head Sep 23 08:32:00 radell kernel: [ 27.962958] nouveau 0000:06:00.0: DRM: 0xD686: Parsing digital output script table Sep 23 08:...
2009 Apr 07
2
Frequency table to histogram
I have read a frequency table in to R called "temp." I now want to create a histogram table from it, but I obviously first have to expand the data - to the sample size of 100. I want to use the command rep(), but I'm not sure how to go about it..I tried using the code: temp1<-rep(temp$Chest,100) hist(temp1) But this creates a v. odd histogram so I know it must be wrong!