Displaying 20 results from an estimated 126 matches for "lors".
Did you mean:
logs
2010 Dec 16
1
defining a formula method for a weighted lm()
In the vcdExtra package on R-Forge, I have functions and generic methods
for calculating log odds ratios
for R x C x strata tables. I'd like to define methods for fitting
weighted lm()s to the resulting loddsratio objects,
but I'm having problems figuring out how to do this generally.
# install.packages("vcdExtra", repos="http://R-Forge.R-Project.org")
2015 Feb 27
2
rsync hangs on select() system call
hello,
trying to understand why a rsync client hangs during a transfer. Hopefully
someone can advise.
client = rsync 3.0.6, server = rsync 3.1.1 , transfer is done to a rsync
module with such a command:
rsync -rtxvvv my_data rsync://test at my.rsync.server/INCOMING/
<rsync://test at rsync.resif.fr/INCOMING_TEST/>
the client starts to transfer data (a few Mb) then hangs, then manually
2017 Nov 27
0
Scatterplot of many variables against a single variable
Hi Engin,
Sadly, your illustration was ambushed on the way to the list. Perhaps
you want something like this:
# proportion of useful answers to your request
pua<-sort(runif(20))
#legibility of your request
lor<-sort(runif(20))+runif(20,-0.5,0.5)
# is a data set provided?
dsp<-sort(runif(20))+runif(20,-0.5,0.5)
# generate a linear model for the above
pua.lm<-lm(pua~lor+dsp)
# get the
2019 Jan 29
3
Finding label of basic block where a conditional branch merges
Hi,
is there any standard way to figure out the label of the basic block
where a conditional branch merges?
If we have a branch statement without an else part this is straightforward:
br i1 %cmp, label %if.then, label %if.end, !dbg !24
We only need to check the operand names whether they contain "end".
However things are getting
more complex when there is an else branch and in
2017 Nov 27
3
Scatterplot of many variables against a single variable
LOL. Great reply Jim.
(N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g.
set.seed(79) suggests that making the request more readable will actually
lower the number of useful answers. :-))
On Mon, Nov 27, 2017 at 11:42 AM, Jim Lemon <drjimlemon at gmail.com> wrote:
> Hi Engin,
> Sadly, your illustration was ambushed on the way to the list. Perhaps
2015 Mar 09
0
rsync hangs on select() system call
hello ,
any suggestion about this problem ?
thanks
2015-02-27 15:46 GMT+01:00 thomas veymont <thomas.veymont at gmail.com>:
> hello,
>
> trying to understand why a rsync client hangs during a transfer. Hopefully
> someone can advise.
>
> client = rsync 3.0.6, server = rsync 3.1.1 , transfer is done to a rsync
> module with such a command:
> rsync -rtxvvv my_data
2017 Nov 27
0
Scatterplot of many variables against a single variable
Dear Berger and Jim
Can you see my eviews example in the annex? (scattersample.jpg)
Sincerely
Engin
2017-11-27 13:27 GMT+03:00 Eric Berger <ericjberger at gmail.com>:
> LOL. Great reply Jim.
> (N.B. Jim's conclusion is "debatable" by a judicious choice of seed. e.g.
> set.seed(79) suggests that making the request more readable will actually
> lower the number of
2017 Nov 27
5
Scatterplot of many variables against a single variable
Dear
I try to realize one scatter matrix which draws *one single variable to all
variables* with *regression line* . You can see my eviews version in the
annex .
How can I draw this graph with R studio?
Sincerely
Engin YILMAZ
2017 Nov 27
1
Scatterplot of many variables against a single variable
You do not appear to have read the Posting Guide mentioned at the bottom if this and every posting on the mailing list.
Only a very few attachment types are allowed through the mailing list... and due to the way many email programs fail to identify them properly, even those few types may not make it through.
Also, this is a plain text email list... any time you send HTML-formatted email it gets
2002 Jun 01
1
Question about Title of Plot
Dear all,
I'm a brazilian medical doctor that I research use of likelihood in the medical research.
I need to do a plot with this layout:
---------------------------------------
| Major Title |
| |
| Title Title |
| -------- -------- |
| | | | | |
| | |
2018 Sep 10
3
How to avoid multiple registers definitions in customInserter.
Hi,
I'm lowering some of the logical operators (by example the | operator) on integer32.
Sadly my target only provide native instruction on high and low parts of 32 bits registers.
So, I have to generate a sequence of two native instructions (LOR followed by HOR).
I've introduced an Pseudo instruction with a custom inserter.
def OR_A_oo : CLPPseudoInst<(ins
2010 Sep 19
1
odds ratios for n-way tables: seeking an *apply-able method
I'm looking for a way to generalize the calculation of (log) odds
ratios for 2 x 2 x {strata} frequency
tables in vcd::oddsratio() to R x C x {strata} tables.
For an R x C table, F, odds ratios can be defined
in several ways; one simple way, particularly for tables with ordered
factors, is to calculate the
set of continuation odds ratios, based on the (R-1)x(C-1) set of 2x2
tables with
2006 Apr 13
2
Automatic finder
It looks rails automatically creates a "finder" method on models that have a "belongs_to". So I tried this in the console:
c = Category.find(2)
chunks = Chunk.find_by_category(c)
chunks is always returned as an empty array. When I know have some chunks with a category_id of 2.
Should the find_by_category do what I think it should be doing or am I completely off base?
2007 Sep 13
4
How to delegate filesystems from different pools to non-global zone
I''m trying to add filesystems from two different pools to a zone but can''t seem to find any mention of how to do this in the docs.
I tried this but the second set overwrites the first one.
add dataset
set name=pool1/fs1
set name=pool2/fs2
end
Is this possible or do I need to use different syntax?
-Robert
This message posted from opensolaris.org
2010 Nov 19
0
printCoefmat() for a data.frame with factors
I want to use something like printCoefmat() in a print.summary method to
print a more nicely formatted version
of the result from a summary method, but where the estimates may be
cross-classified by one or more factors.
However, printCoefmat() assumes that the labels for the parameters are
the rownames of the object, and
prints factors as integers. With one factor, I could just assign that as
2019 Jan 29
2
Finding label of basic block where a conditional branch merges
Joshua, David
much appreciate your quick help!
What I am actually doing is statically tracing values. If one of the traced values is part of a condition (e.g. in an if statement) all instructions in the then and else part are also traced. The automatic tracing of instructions however needs to stop when I hit the first instruction after the if statement (same for switch).
Dominators seem to be a
2013 Oct 09
4
[LLVMdev] Related constant folding of floating point values
Hi all,
I have the following test case:
#define FLT_EPSILON 1.19209290E-7
int err = -1;
int main()
{
float a = 8.1;
if (((a - 8.1) >= FLT_EPSILON) || ((a - 8.1) <= -FLT_EPSILON)) { //I am
using FLT_EPSILON to check whether (a != 2.0).
err = 1;
} else {
err = 0;
}
return 0;
}
with -O3 optimization level clang generates already incorrect LLVM IR:
; Function Attrs:
2006 Mar 28
5
Rails 1.1 for new apps only
Hi,
I was very excited to hear that Rails 1.1 project has been released. It gave me the fire I need to get started on a pet project I''ve been thinking about. However I have a couple apps that don''t seem to play nice with Rails 1.1, mainly Typo.
So my question is: How can I install Rails 1.1 for only a new application?
thanks, scott.
2008 Apr 16
3
Problems with R2WinBUGS
Hello,
I am trying to use R2WinBUGS to conduct a mixed treatment comparison (MTC)
analysis. On the surface, it seems to me that I am following the correct
steps: (1) reading the data into R, (2) specifying initial values for the
parameters in the model and (3) fitting the model to the data using the
bugs() function in R2WinBUGS. However, I get the error message
2006 Feb 22
5
[OT] Apache rewrite stuff...
Hi all, a little off topic, but was wondering what the best way is to
re-write incoming requests so that they all end up at the same domain.
For example, if I had:
my_domain.net
my_domain.com
my_domain.org
Whats the best way to map/redirect all of these to
www.my_domain.com
?
I know its possible, just not sure what to add for rules/virtual hosts
in my apache config.
Thanks for the help!
-Nick