Displaying 19 results from an estimated 19 matches for "chapter1".
Did you mean:
chapter
2007 Jul 18
10
Rails - Mock going out of scope?
...self.root? ? language.name : parent.language_name
end
end
describe Node, "instance" do
fixtures :nodes
before(:each) do
@language = mock_model(Language, :name => "Japanese")
@node = Node.create!(:language => @language)
@section1 = Node.create!()
@chapter1 = Node.create!()
end
it "should return it''s own language if it is root" do # Passes
@language.should_receive(:name).exactly(:once).and_return("Japanese")
@node.language_name.should == "Japanese"
end
it "should return it''s paren...
2013 Jan 09
3
Sweave, Texshop, and sync with included Rnw file
...nce the need to use Sweave.
I was able to compile Rnw files, and to sync back and forth from the pdf to the source Rnw.
My problem now is that the book is divided in Chapters, and every chapter is in its own Rnw file.
I can compile them from the main one (book.Rnw) using the directive
\SweaveInput{chapter1.Rnw}
The problem stands in the fact that like this I am missing synchronization between the pdf and the source Rnw. If part of text is in book.Rnw I can synchronize, but if the text is in one of the included files, it just doesn't work.
I am using the sweave engine found in the following webpa...
2007 Oct 09
1
Visualize cox proportional hazards
...f Medicine:
http://content.nejm.org/cgi/content/short/353/26/2747/F3
http://content.nejm.org/cgi/content/short/350/26/2654/F2
(I hope these are open access, but I am not sure)
And something similar in the book 'R Graphics' by Paul Murrell:
http://www.stat.auckland.ac.nz/~paul/RGraphics/chapter1.html
(Fig. 1.8)
But the code that is needed (to modify) is quite complex:
http://www.stat.auckland.ac.nz/~paul/RGraphics/examples-table.R
My question: Is there a simple way to obtain such a plot? and
Is there any other good plot to visualize the hazard ratios?
Thanks in advance.
--
Armin Goral...
2010 Jun 09
2
"Graphics history" in UNIX
...- do I correctly understand that "No <Graphics history> facility is
available for Linux systems"?
- (if Yes above) Please, let me understand why??
Many thanks for sharing.
Sincerely, Roberto Scotti
------------------------
from: http://www.stat.auckland.ac.nz/~paul/RGraphics/chapter1.pdf
"1.3.2 Multiple pages of output"
"For a screen device, starting a new page involves clearing the window
before
producing more output. On Windows there is a facility for returning to
previous
screens of output (see the \History" menu, which is available when a
graphics wind...
2010 Jun 09
0
"Graphics history" in UNIX (text only)
...ons:
- do I correctly understand that "No <Graphics history> facility is
available for Linux systems"?
- (if Yes above) Please, let me understand why??
Many thanks for sharing.
Sincerely, Roberto Scotti
------------------------
from: http://www.stat.auckland.ac.nz/~paul/RGraphics/chapter1.pdf
"1.3.2 Multiple pages of output"
"For a screen device, starting a new page involves clearing the window
before
producing more output. On Windows there is a facility for returning to
previous
screens of output (see the \History" menu, which is available when a
graphics wind...
2006 Apr 24
1
rmeta: forest plot problem
Der useRs,
I'm working on meta analysis using rmeta package. Using code below I
plot the forest plot:
library(rmeta)
data (catheter)
a<-meta.MH (n.trt, n.ctrl, col.trt, col.ctrl, data=catheter, names=Name,
subset=c(13,6,5,3,7,12,4,11,1,8,10,2))
summary(a) # odds ratio values and confidence intervals
metaplot(a$logOR, a$selogOR, nn=a$selogOR^-2,a$names, summn=a$logMH,
sumse=a$selogMH,
2009 Feb 10
2
forestplot
Dear R users,
Is there any way to control the size of the box around the mean when
creating a Forest plot using the forestplot function?
regards
Mark
Mark T. Marino, MD
VP, Early Clinical Development
Mannkind Corp.
61 S. Paramus Road
Paramus, NJ 07652
201-983-5238 Office
203-512-4008 Cell
mmarino@mannkindcorp.com
[[alternative HTML version deleted]]
2013 Mar 14
2
how to import DNA sequences in R
Dear all,
I was wondering how to read DNA sequences in R, is there a specific
function and/or a specific package for that?
Thank you very much in advance,
Gian
**
[[alternative HTML version deleted]]
2017 Apr 09
2
Possible stack corruption during call to JITSymbol::getAddress()
...nclude "llvm/Support/DynamicLibrary.h"
#include "llvm/Support/TargetSelect.h"
#include <iostream>
using namespace llvm;
using namespace llvm::orc;
/** This class taken verbatim from
*
https://github.com/llvm-mirror/llvm/blob/release_40/examples/Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
* This is from the same revision of LLVM I am using (the release_40 branch
as of 4/8/2017)
*/
class KaleidoscopeJIT {
private:
std::unique_ptr<TargetMachine> TM;
const DataLayout DL;
ObjectLinkingLayer<> ObjectLayer;
IRCompileLayer<decltype(ObjectL...
2017 Apr 17
2
Possible stack corruption during call to JITSymbol::getAddress()
...pport/TargetSelect.h"
>> #include <iostream>
>>
>> using namespace llvm;
>> using namespace llvm::orc;
>>
>> /** This class taken verbatim from
>> * https://github.com/llvm-mirror/llvm/blob/release_40/examples
>> /Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
>> * This is from the same revision of LLVM I am using (the release_40
>> branch as of 4/8/2017)
>> */
>> class KaleidoscopeJIT {
>> private:
>> std::unique_ptr<TargetMachine> TM;
>> const DataLayout DL;
>> Object...
2020 Sep 23
2
ORC JIT - Can modules independently managed with one LLJIT instance? + problems with ExecutionSession.lookup
...want.
In the new system you can also perform fine grained removal: It is possible to track and remove individual modules from within a JITDylib. For an example of this see: https://github.com/lhames/llvm-project/blob/7ec9f8930f68760953a483157e010d0ff88285cd/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp#L1148<https://hes32-ctp.trendmicro.com:443/wis/clicktime/v1/query?url=https%3a%2f%2fgithub.com%2flhames%2fllvm%2dproject%2fblob%2f7ec9f8930f68760953a483157e010d0ff88285cd%2fllvm%2fexamples%2fKaleidoscope%2fBuildingAJIT%2fChapter1%2ftoy.cpp%23L1148&umid=7d73edbc-e566-4ffc-bd01-827f3d6...
2007 Nov 07
10
Plain Text Story example
Hey all,
Does anyone have an example(s) of the plain text story runner for
rails? I have read David''s blog
(http://blog.davidchelimsky.net/articles/2007/10/22/plain-text-stories-on-rails)
about it but I would like to see some examples with all of the step
matchers included... I couldn''t find any more examples on google
talking about the plain text stories and the example
2017 Apr 20
2
Possible stack corruption during call to JITSymbol::getAddress()
...m>
>>>>
>>>> using namespace llvm;
>>>> using namespace llvm::orc;
>>>>
>>>> /** This class taken verbatim from
>>>> * https://github.com/llvm-mirror/llvm/blob/release_40/examples
>>>> /Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
>>>> * This is from the same revision of LLVM I am using (the release_40
>>>> branch as of 4/8/2017)
>>>> */
>>>> class KaleidoscopeJIT {
>>>> private:
>>>> std::unique_ptr<TargetMachine> TM;
>&...
2012 Jan 06
4
Enhanced Podcasts with Ogg Vorbis (Chapter Marks)
...t ogm, also android has no ogm support AFAIK
So maybe I did something wrong here? Or does anyone know a player where
OGM chapters work?
3) Concatenating ogg files
This method was described here: [6]. Each chapter must be one ogg vorbis
file and then they are concatenated in one big file:
$ cat chapter1.ogg chapter2.ogg chapter3.ogg > all_chapters.ogg
PROS:
- this method is fully ogg vorbis compatible, cheap hardware players
also play these files
- foobar lists the individual files and it's able to seek
CONS:
- I found no other player so far which is able to display these "chapters&...
2017 May 01
1
Possible stack corruption during call to JITSymbol::getAddress()
...using namespace llvm;
>>>>>> using namespace llvm::orc;
>>>>>>
>>>>>> /** This class taken verbatim from
>>>>>> * https://github.com/llvm-mirror/llvm/blob/release_40/examples
>>>>>> /Kaleidoscope/BuildingAJIT/Chapter1/KaleidoscopeJIT.h
>>>>>> * This is from the same revision of LLVM I am using (the release_40
>>>>>> branch as of 4/8/2017)
>>>>>> */
>>>>>> class KaleidoscopeJIT {
>>>>>> private:
>>>>>>...
2010 Apr 19
2
plotting RR, 95% CI as table and figure in same plot
Hi all--
I am in the process of helping colleagues write up a ms in which we fit
zero-inflated Poisson models. I would prefer plotting the rate ratios
and 95% CI (as I've found Gelman and others convincing about plotting
tables...), but our journals usually like the numbers themselves.
Thus, I'm looking at a recent JAMA article in which both numbers and
dotplot of RR and 95% CI are
2020 Sep 24
2
ORC JIT - Can modules independently managed with one LLJIT instance? + problems with ExecutionSession.lookup
...want.
In the new system you can also perform fine grained removal: It is possible to track and remove individual modules from within a JITDylib. For an example of this see: https://github.com/lhames/llvm-project/blob/7ec9f8930f68760953a483157e010d0ff88285cd/llvm/examples/Kaleidoscope/BuildingAJIT/Chapter1/toy.cpp#L1148<https://hes32-ctp.trendmicro.com:443/wis/clicktime/v1/query?url=https%3a%2f%2fgithub.com%2flhames%2fllvm%2dproject%2fblob%2f7ec9f8930f68760953a483157e010d0ff88285cd%2fllvm%2fexamples%2fKaleidoscope%2fBuildingAJIT%2fChapter1%2ftoy.cpp%23L1148&umid=7d73edbc-e566-4ffc-bd01-827f3d6...
2013 Mar 06
12
if dentro de for
Buenas,
Me encuentro con el mismo problema, de que me dice que el argumento del if
no es un "valor ausente donde TRUE/FALSE es necesario"
Este es mi codigo de pruebas.
readseq <- "aaaaaaaaaaa", "aaa", "aa")
auxiliar <- count(readseq[j],i+2)
aux_a <- auxiliar["listaa"]
if(aux_a > 0){
matrizgraf3[i][k] = matrizgraf3[i][k] + 1
listaa
2019 Apr 30
6
Disk space and RAM requirements in docs
...ples/Kaleidoscope/Chapter2
16K build/examples/Kaleidoscope/BuildingAJIT/Chapter5/Server
16K build/examples/Kaleidoscope/BuildingAJIT/Chapter4
16K build/examples/Kaleidoscope/BuildingAJIT/Chapter3
16K build/examples/Kaleidoscope/BuildingAJIT/Chapter2
16K build/examples/Kaleidoscope/BuildingAJIT/Chapter1
16K build/examples/HowToUseJIT
16K build/examples/Fibonacci
16K build/examples/BrainF
16K build/benchmarks
12K build/utils/llvm-lit
12K build/utils/count/CMakeFiles/count.dir
12K build/tools/xcode-toolchain
12K build/tools/polly/tools
12K build/tools/polly/lib/External/isl/include/isl
12K...