Displaying 15 results from an estimated 15 matches for "raschk".
Did you mean:
rasch
2016 Dec 14
2
unexpected behaviour of search queries with mixed AND and OR
...doveadm -f flow fetch -u USER guid \( savedbefore 21d OR \( seen savedbefore 5d \) \) |wc -l
63247
doveconf -n
# 2.2.24 (a82c823): /etc/dovecot/dovecot.conf
# Pigeonhole version 0.4.9 (357ac0a0e68b+)
# OS: Linux 3.16.0-0.bpo.4-amd64 x86_64 Debian 7.9
Mit freundlichen Gruessen,
Juergen Raschke
--
Mittwald CM Service GmbH & Co. KG
Koenigsberger Strasse 6 Tel: +49-5772-293-100
32339 Espelkamp Fax: +49-5772-293-333
Geschaeftsfuehrer: Robert Meyer, HRA 6640, AG Bad Oeynhausen
Komplementaerin: Robert Meyer Verwaltu...
2010 Jul 19
3
Indexing by logical vectors
...ONETARY=C LC_MESSAGES=en_US.UTF-8
[7] LC_PAPER=en_US.UTF-8 LC_NAME=C
[9] LC_ADDRESS=C LC_TELEPHONE=C
[11] LC_MEASUREMENT=en_US.UTF-8 LC_IDENTIFICATION=C
attached base packages:
[1] stats graphics grDevices utils datasets methods base
--
Christian Raschke
Department of Economics
and
ISDS Research Lab (HSRG)
Louisiana State University
crasch2 at lsu.edu
2010 Feb 28
1
"Types" of missingness
...nd this somehow, especially in this easy
example, but as data frames get larger and cases more complex the
workarounds seem more and more klutzy to me.
So, if there is an easy way to do this that I have overlooked, I would
be grateful for any advice or references.
Best,
Christian
--
Christian Raschke
Department of Economics
and
ISDS Research Lab (HSRG)
Louisiana State University
Patrick Taylor Hall, Rm 2128
Baton Rouge, LA 70803
crasch2@lsu.edu
[[alternative HTML version deleted]]
2016 Dec 14
0
unexpected behaviour of search queries with mixed AND and OR
On 14.12.2016 12:18, Juergen Raschke wrote:
> Hello,
>
>
> I found out an unexpected behaviour of search queries with mixed
> "AND" and "OR".
>
>
> With search query "\( condA OR condB condC \)" I get an error:
> Fatal: Use parenthesis when mixing ANDs and ORs
>
> if I sw...
2011 Feb 02
1
set digits in xtable by row
...he number of digits to display for
specified columns. Am I missing another obvious option to do the same
thing for rows? A quick RSiteSearch didn't turn up anything. I can't
just flip the table sideways, but it looks goofy when I report sample
sizes etc as 123.0000.
Thanks!
--
Christian Raschke
Department of Economics
and
ISDS Research Lab (HSRG)
Louisiana State University
Patrick Taylor Hall, Rm 2128
Baton Rouge, LA 70803
crasch2 at lsu.edu
2017 Feb 03
3
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
...er at de.bosch.com>
Sitz: Stuttgart, Registergericht: Amtsgericht Stuttgart, HRB 14000;
Aufsichtsratsvorsitzender: Franz Fehrenbach; Geschäftsführung: Dr. Volkmar Denner,
Dr. Stefan Asenkerschbaumer, Dr. Rolf Bulander, Dr. Stefan Hartung, Dr. Markus Heyn, Dr. Dirk Hoheisel,
Christoph Kübel, Uwe Raschke, Dr. Werner Struth, Peter Tyroller
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20170203/d1e1a658/attachment.html>
2010 Sep 14
2
Multiple CPU HowTo in Linux?
Hello all,
I upgraded my R workstation, and to my dismay, only one core appears to
be used during intensive computation of a bioconductor function.
What I have now is two dual-core Xeon 5160 CPUs and 10 GB RAM. When I
fully load it, top reports about 25% user, 75% idle and 0.98 short-term
load.
The archives gave nothing helpful besides mention of snow. I thought of
posting to HPC, but this system
2010 Apr 16
3
VERY SIMPLE QUESTION
Dear R users,
I am looking for more efficient way to compute the followings
--------------------------------------------------------------------------
a <- matrix(c(1,1,1,1,2,2,2,2),4,2)
b <- matrix(c(1,2,3,4),4,1)
Eventually, I want to get this matrix, `c`.
c <- matrix(c(1/1,1/2,1/3,1/4,2/1,2/2,2/3,2/4),4,2)
--------------------------------------------------------------------------
2017 Feb 03
2
Clang 5.0 support for armv8 64 bit with neon and auto vectorization
...Haider at de.bosch.com
Sitz: Stuttgart, Registergericht: Amtsgericht Stuttgart, HRB 14000;
Aufsichtsratsvorsitzender: Franz Fehrenbach; Geschäftsführung: Dr. Volkmar Denner,
Dr. Stefan Asenkerschbaumer, Dr. Rolf Bulander, Dr. Stefan Hartung, Dr. Markus Heyn, Dr. Dirk Hoheisel,
Christoph Kübel, Uwe Raschke, Dr. Werner Struth, Peter Tyroller
-----Original Message-----
From: Tim Northover [mailto:t.p.northover at gmail.com]
Sent: Freitag, 3. Februar 2017 16:02
To: Haider Zeeshan (CC/ESM1) <Zeeshan.Haider at de.bosch.com>
Cc: llvm-dev at lists.llvm.org
Subject: Re: [llvm-dev] Clang 5.0 support...
2010 Feb 22
3
gsub patterns from vector elements w/out loop?
Dear list,
I have two vectors:
x <- c("one","two")
y <- paste(rep(x,2),"blah")
I want to replace all occurrences of each element of x in y with
something else, so that y looks like this:
y
[1] "something else blah" "something else blah" "something else blah"
[4] "something else blah"
I can do this using a loop:
for (
2010 Jun 28
2
Lattice and Beamer
Two things I think are some of the best developments in statistics and production are the lattice package and the beamer class for presentation in Latex. One thing I have not become very good at is properly sizing my visuals to look good in a presentation.
For instance, I have the following code that creates a nice plot (sorry, cannot provide reproducible data).
2010 Oct 06
3
what is the "NOT IN" operator
Good day,
I need to subset a data by removing several rows. I know the %in% operator, i.e.
sub <- mydata[group %in% c("A","B","E","G"), ]
What I need is the opposite, that is remove rows and/or columns. What is the operator for "NOT IN"? I tried (i)! %in% and (ii) ^%in% and both resulted in a "could not find function" error.
2010 Sep 01
5
[semi-OT] Using fortune() in an email signature
Hello, As you can see from my signature in this message, I use the R
fortune function to generate a fortune, which is then fed to the
signature program, which constructs a named pipe containing the
fortune-bearing sig, which is then included in mail messages. The
problem is that it's got extraneous junk in it and I can't figure out
how to get rid of it. This is the command that generates
2010 Apr 15
4
Does "sink" stand for anything?
Hello Everyone,
Learning about R and its wonderful array of functions. If it's not obvious, I usually try to find out what a function stands for. I think this helps me remember better.
One function that has me stumped is "sink." Can anyone tell me if this stands for something?
Thanks,
Paul
__________________________________________________
[[alternative HTML
2010 Oct 15
0
nomianl response model
...r Langfelder)
55. Re: Pasting function arguments and strings (William Dunlap)
56. Re: "Memory not mapped" when using .C, problem in Mac but not
in Linux (William Dunlap)
57. Extracting index in character array. (lord12)
58. Re: Extracting index in character array. (Christian Raschke)
59. [OT] (slightly) - OpenOffice Calc and text files
(Schwab,Wilhelm K)
60. Re: Read Particular Cells within Excel (Henrique Dallazuanna)
61. Re: bootstrap in pROC package (?ukasz R?c?awowicz)
62. Re: [OT] (slightly) - OpenOffice Calc and text files (Albyn Jones)
63. Re: [OT] (sli...