search for: naivety

Displaying 20 results from an estimated 23 matches for "naivety".

Did you mean: naively
2003 Oct 09
4
Getting rows from a dataframe
Sorry if this is a silly question. I'm trying to extract all elements of a dataframe at a particular row. I can find no mention of this in any documentation and it may be naivety of dataframe on my part as I'm very green at this. Thankyou, Mark
2015 Jul 09
5
[LLVMdev] Strong post-dominance in LLVM?
There is PostDominatorTree for determining post-dominance. Even if A post-dominates B and B is executed, that doesn't guarantee that A will be executed. For example, there could be an infinite loop in-between. Strong post-dominance makes the stronger guarantee that there will be no infinite loop from B to A. Do we have anything in LLVM for determining strong post-dominance and in general for
2009 Feb 19
4
type III effect from glm()
Hi all, This could be naivety/stupidity on my part rather than a problem with model output, but here goes.... I have fitted a fairly simple model m1<-glm(count~siteall+yrs+yrs:district,family=quasipoisson,weights=weight,data=m[x[[i]],]) I want to know if yrs (a continuous variable) has a significant unique effect in the...
2007 Jan 05
4
How To Spec Controllers with Finders
Given this code (which renders rjs), I''m faced with the fixture- driven way of spec-ing or mocking. How the heck to you mock this so the code at line (2) and (4) work right? I''m still struggling with mocks but it seems like this can be done. Forgive the naivety of this question. 1. def change_quantity 2. @line_item = LineItem.find_by_id(params[:id]) 3. unless @line_item.nil? 4. @line_item.update_attribute(:quantity, params[:quantity]) 5. @extension_id = "extension#{params[:id]}" 6. end 7. end Thanks
2016 May 04
2
llvm dynamic execution trace
Hi Dean, thank you for the response! I'm a newbie to LLVM, a student working on an LLVM project so I'm not quite sure of what you're suggesting, please excuse my naivety. To clarify there used to exist this http://llvm.org/releases/1.0/docs/CommandGuide/lli.html where you could type "lli -trace 'filename.bc' and you would get a dump of the dynamic excutiion trace. I need something like: to record the execution (statement/instruction) trace of a pr...
2009 Feb 05
1
Streaming Speex over RTP
I am a brand new user of Speex, so forgive my naivety. I am receiving an audio stream (PCM) which I need to encode in Speex, send it across a wire via RTP, and then decode and play the audio on the other side. I assume people have done this before, and I was wondering if anyone had any sample code of how they accomplished this. Or maybe just some go...
2004 Apr 01
1
how to add a wiki page?
Hi, Pardon my naivety - but how do I add a new tiki page? I want to add one for 'wiki-Asterisk+cdr+pgsql'. thanks, James
2006 Aug 15
1
REML with random slopes and random intercepts giving strange results
...n to obtain the same information, then I compared the results. It looks like the REML method doesnt seem to approximate the two parameters as well as using the simple linear regression on each individual separately, as judged by looking at graphs. Indeed, why do the results differ at all? Excuse my naivety if this is a silly question. Thanks to everyone for replying to my previous questions, very much appreciated. Simon Pickett PhD student Centre For Ecology and Conservation Tremough Campus University of Exeter in Cornwall TR109EZ Tel 01326371852
2002 May 27
3
functions and getting them into R
...where is the default location for looking up functions where I can place this file. eg where are functions such as var(), mean() etc stored? At the moment I'm pasting the text of the function into the GUI prompt, not very satisfactory if it is to be used in a programme. Please forgive any naivety on my part as I am just starting out Many thanks in advance Guy ---------------------------------------------------------------------- Guy J. Forrester Phone: 01453 860777 CSL Research Unit Fax: 01453 860132 Woodchester Park e-mail: g.forrester at csl.gov.uk Nymsfield Stonehou...
2006 Oct 13
2
Version of R in saved workspaces
useRs and developeRs- Apologies for my naivety, but I just couldn't figure out how to open an old workspace (created using R 2.3.0) using R 2.3.0 and not R 2.4.0 which is currently happening. For all I know this has always been the case, but I'm having a problem with a function that doesn't work in 2.4.0 but does work in 2.3.1 (func...
2006 Aug 16
1
[SPAM] - RE: REML with random slopes and random intercepts giving strange results - Bayesian Filter detected spam
...> >> method doesnt seem to approximate the two parameters as > well as using > >> the simple linear regression on each individual > separately, as judged > >> by looking at graphs. > >> Indeed, why do the results differ at all? > >> Excuse my naivety if this is a silly question. > >> Thanks to everyone for replying to my previous questions, > very much > >> appreciated. > >> Simon Pickett > >> PhD student > >> Centre For Ecology and Conservation > >> Tremough Campus > >> Univer...
2016 Apr 24
2
Retrieving numeric value of instruction operand
...hard time getting the integer value of variables since it is so simple in regular languages, it can't be possible that LLVM does not have a way for that, I've also tried casting the operand to a ConstantInt which wasn't successful. I'm a beginner with LLVM and i do apologize for my naivety. Best Regards, Ammar On 24 April 2016 at 10:51, John Criswell <jtcriswel at gmail.com> wrote: > On 4/24/16 1:27 PM, Ammar Naqvi wrote: > > hey john, > > yes indeed, that's what I'm trying, retreiving the values of %a and %b in > an LLVM pass, sorry about the conf...
2003 Oct 09
2
AW: Getting rows from a dataframe
...m] Gesendet: Donnerstag, 9. Oktober 2003 18:02 An: r-help at stat.math.ethz.ch Betreff: [R] Getting rows from a dataframe Sorry if this is a silly question. I'm trying to extract all elements of a dataframe at a particular row. I can find no mention of this in any documentation and it may be naivety of dataframe on my part as I'm very green at this. Thankyou, Mark ______________________________________________ R-help at stat.math.ethz.ch mailing list https://www.stat.math.ethz.ch/mailman/listinfo/r-help
2007 Mar 13
0
[LLVMdev] Writing a backend basic information
...truction that has an immediate present/omitted. Would I need to define a new 17bit type Imm17 in CodeGen/ValueTypes.td/h, or can I cope with the 17 bit immediate elsewhere by perhaps using an i32? OR, can I handle this elsewhere in codegen/instruction selection more elegantly? Apologies for the naivety of my question. multiclass sabre_inst<string opcodestr, bits<5> opcode> { def rr : InstSABRE< opcode, (ops IntRegs:$dst, IntRegs:$src), !strconcat (opcodestr, " $dst, $src")>; def ri: InstSABRE< op...
2016 May 04
2
llvm dynamic execution trace
hi everyone, I'm trying to get something like the lli - trace functionality that has been deprecated. I need the same thing that the trace command was doing i. e. the dynamic execution trace, any idea on what it has moved to if it still exists or how to implement it? Best Regards, Ammar Naqvi -------------- next part -------------- An HTML attachment was scrubbed... URL:
2005 May 11
1
structuralObjectClass and smbldap-tools
Sorry, if this has been dealt with before, but I couldn't find it. I tried installing openldap 2.2 + samba 3. Currently I only have one install of openldap 2.0 and samba 2.2 running. Now, it all looks quite good, but the smbldap-tools do not add the necessary structuralobjectClass entries, so using the tools fails. I was able to manually change the first populate - which could be exported
2007 Apr 13
1
Call Recording Servers
We are looking at using Asterisk as a call recording server for an Avaya VoIP S8700 system in a multi-site VoIP Call Center. All calls will be coming in to one location and sent out via VoIP to other call centers. What kind of specs should we be looking at purchasing for our Asterisk server to be record up 200-300 calls simultaneously? Linux runs in 64 bit architecture, but does Asterisk
2006 May 27
36
Might be buying a Mac
I might be buying a Mac tomorrow. I checked out the new 13.3in MacBook at the new Apple Store on 5th ave in NYC. I''m torn between the smaller MacBook and the MacBook Pro. We have a pro at work and I''m not that thrilled with the way it feels. I like the keyboard much better on the 13inch. However, I think doing development on that small of a screen could get frustrating. Any
2012 Aug 03
2
Density plots
Dear group, I need help on two problems: 1. I am trying to plot density plots for each individual in 8 occasions. I can do this by subject wiht the code below: par(mfrow=c(4,2)) plot(density(all8scenarios$SIMCONC[all8scenarios$ID==1&all8scenarios$WSEQ==0])) plot(density(all8scenarios$SIMCONC[all8scenarios$ID==1&all8scenarios$WSEQ==1]))
2007 Mar 22
1
[LLVMdev] Backend: 2 address + 17bit immediate
...t constant) LD %d, %a // ie load the contents of the memory at the address stored in %a into register %d where the HI/LO16 are performed at code generation by LLVM. I'm a little confused as to how to specify this as a pattern in tablegen syntax, even with the PPC example. Apologies for the naivety of these questions. Thanks, Andy Dr. Andy Nisbet: URL http://www.docm.mmu.ac.uk/STAFF/A.Nisbet Department of Computing and Mathematics, John Dalton Building, Manchester Metropolitan University, Chester Street, Manchester M1 5GD, UK. Email: A.Nisbet at mmu.ac.uk, Phone:(+4...