Displaying 20 results from an estimated 424 matches for "wk".
Did you mean:
awk
2009 Mar 23
1
incoherent treatment of NULL
somewhat related to a previous discussion [1] on how 'names<-' would
sometimes modify its argument in place, and sometimes produce a modified
copy without changing the original, here's another example of how it
becomes visible to the user when r makes or doesn't make a copy of an
object:
x = NULL
dput(x)
# NULL
class(x) = 'integer'
# error: invalid
2019 Mar 29
2
Test failure due to file path
...username (csabaraduly) contains "bar" :
********************
FAIL: LLVM :: tools/llvm-objcopy/ELF/regex.test (47099 of 50832)
******************** TEST 'LLVM :: tools/llvm-objcopy/ELF/regex.test'
FAILED ********************
Script:
--
: 'RUN: at line 1';
/home/csabaraduly/wk/LLVM-git/__build_release_99/bin/yaml2obj
/home/csabaraduly/wk/LLVM-git/llvm/test/tools/llvm-objcopy/ELF/regex.test
> /home/csabaraduly/wk/LLVM-git/__build_release_99/test/tools/llvm-objcopy/ELF/Output/regex.test.tmp
: 'RUN: at line 4';
/home/csabaraduly/wk/LLVM-git/__build_release_99/bin...
2009 Feb 23
1
are arithmetic comparison operators binary?
the man page for relational operators (see, e.g., ?'<') says:
"
Binary operators which allow the comparison of values in atomic vectors.
Arguments:
x, y: atomic vectors, symbols, calls, or other objects for which
methods have been written.
"
it is somewhat surprizing that the following works:
'<'(1)
# logical(0)
'<'()
#
2009 Feb 23
1
are arithmetic comparison operators binary?
the man page for relational operators (see, e.g., ?'<') says:
"
Binary operators which allow the comparison of values in atomic vectors.
Arguments:
x, y: atomic vectors, symbols, calls, or other objects for which
methods have been written.
"
it is somewhat surprizing that the following works:
'<'(1)
# logical(0)
'<'()
#
2009 Mar 18
2
incoherent conversions from/to raw
i wonder about the following examples showing incoherence in how type
conversions are done in r:
x = TRUE
x[2] = as.raw(1)
# Error in x[2] = as.raw(1) :
# incompatible types (from raw to logical) in subassignment type fix
it seems that there is an attempt to coerce the raw value to logical
here, which fails, even though
as.logical(as.raw(1))
# TRUE
likewise,
x[2]
2009 Mar 18
2
incoherent conversions from/to raw
i wonder about the following examples showing incoherence in how type
conversions are done in r:
x = TRUE
x[2] = as.raw(1)
# Error in x[2] = as.raw(1) :
# incompatible types (from raw to logical) in subassignment type fix
it seems that there is an attempt to coerce the raw value to logical
here, which fails, even though
as.logical(as.raw(1))
# TRUE
likewise,
x[2]
2019 Mar 29
2
Test failure due to file path
...username (csabaraduly) contains "bar" :
********************
FAIL: LLVM :: tools/llvm-objcopy/ELF/regex.test (47099 of 50832)
******************** TEST 'LLVM :: tools/llvm-objcopy/ELF/regex.test'
FAILED ********************
Script:
--
: 'RUN: at line 1';
/home/csabaraduly/wk/LLVM-git/__build_release_99/bin/yaml2obj
/home/csabaraduly/wk/LLVM-git/llvm/test/tools/llvm-objcopy/ELF/regex.test
> /home/csabaraduly/wk/LLVM-git/__build_release_99/test/tools/llvm-objcopy/ELF/Output/regex.test.tmp
: 'RUN: at line 4';
/home/csabaraduly/wk/LLVM-git/__build_release_99/bin...
2017 Nov 27
2
Go Tsan check failure
Hi all,
I'm trying to build clang on Ubuntu 17.10 - the build succeeds, but
testing fails:
~/wk/LLVM/build_release$ svn info ../llvm/
Path: /home/csabaraduly/wk/LLVM/llvm
Working Copy Root Path: /home/csabaraduly/wk/LLVM/llvm
URL: https://llvm.org/svn/llvm-project/llvm/trunk
Relative URL: ^/llvm/trunk
Repository Root: https://llvm.org/svn/llvm-project
Repository UUID: 91177308-0d34-0410-b5e6-...
2018 Apr 16
2
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
********************
FAIL: LLVM :: tools/llvm-dwarfdump/X86/debug-names-find.s (38881 of 41794)
******************** TEST 'LLVM ::
tools/llvm-dwarfdump/X86/debug-names-find.s' FAILED
********************
Script:
--
/home/csabaraduly/wk/LLVM/build_release/bin/llvm-mc -triple
x86_64-pc-linux
/home/csabaraduly/wk/LLVM/llvm/test/tools/llvm-dwarfdump/X86/debug-names-find.s
-filetype=obj -o
/home/csabaraduly/wk/LLVM/build_release/test/tools/llvm-dwarfdump/X86/Output/debug-names-find.s.tmp
/home/csabaraduly/wk/LLVM/build_release/bin/llv...
2017 Nov 28
2
Go Tsan check failure
...t; wrote:
> +dvyukov
>
> On Mon, Nov 27, 2017 at 4:56 AM, Csaba Raduly via llvm-dev
> <llvm-dev at lists.llvm.org> wrote:
>>
>> Hi all,
>>
>> I'm trying to build clang on Ubuntu 17.10 - the build succeeds, but
>> testing fails:
>>
>> ~/wk/LLVM/build_release$ svn info ../llvm/
>> Path: /home/csabaraduly/wk/LLVM/llvm
>> Working Copy Root Path: /home/csabaraduly/wk/LLVM/llvm
>> URL: https://llvm.org/svn/llvm-project/llvm/trunk
>> Relative URL: ^/llvm/trunk
>> Repository Root: https://llvm.org/svn/llvm-proj...
2018 Apr 16
0
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
...vm.org> wrote:
> ********************
> FAIL: LLVM :: tools/llvm-dwarfdump/X86/debug-names-find.s (38881 of 41794)
> ******************** TEST 'LLVM ::
> tools/llvm-dwarfdump/X86/debug-names-find.s' FAILED
> ********************
> Script:
> --
> /home/csabaraduly/wk/LLVM/build_release/bin/llvm-mc -triple
> x86_64-pc-linux
/home/csabaraduly/wk/LLVM/llvm/test/tools/llvm-dwarfdump/X86/debug-names-find.s
> -filetype=obj -o
/home/csabaraduly/wk/LLVM/build_release/test/tools/llvm-dwarfdump/X86/Output/debug-names-find.s.tmp
> /home/csabaraduly/wk/LLVM/buil...
2018 Apr 16
1
tools/llvm-dwarfdump/X86/debug-names-find.s spurious failure
...*********
> > FAIL: LLVM :: tools/llvm-dwarfdump/X86/debug-names-find.s (38881 of
41794)
> > ******************** TEST 'LLVM ::
> > tools/llvm-dwarfdump/X86/debug-names-find.s' FAILED
> > ********************
> > Script:
> > --
> > /home/csabaraduly/wk/LLVM/build_release/bin/llvm-mc -triple
> > x86_64-pc-linux
/home/csabaraduly/wk/LLVM/llvm/test/tools/llvm-dwarfdump/X86/debug-names-find.s
> > -filetype=obj -o
/home/csabaraduly/wk/LLVM/build_release/test/tools/llvm-dwarfdump/X86/Output/debug-names-find.s.tmp
> > /home/csabara...
2017 Nov 28
1
Go Tsan check failure
...M, Csaba Raduly via llvm-dev
>>> <llvm-dev at lists.llvm.org> wrote:
>>>>
>>>> Hi all,
>>>>
>>>> I'm trying to build clang on Ubuntu 17.10 - the build succeeds, but
>>>> testing fails:
>>>>
>>>> ~/wk/LLVM/build_release$ svn info ../llvm/
>>>> Path: /home/csabaraduly/wk/LLVM/llvm
>>>> Working Copy Root Path: /home/csabaraduly/wk/LLVM/llvm
>>>> URL: https://llvm.org/svn/llvm-project/llvm/trunk
>>>> Relative URL: ^/llvm/trunk
>>>> Reposit...
2003 Oct 27
3
How to disable XFree86 and wdm listening ports
Hello,
what is the right way to disable XFree86 and wdm listening
ports tcp 6000 and tcp 1024.
I read in man XFree86 about the -nolisten tcp option
and tried to set in /usr/X11R6/lib/X11/xdm
:0 local /usr/X11R6/bin/X -nolisten tcp
but it was not successful.
What is the right way to close the ports without use of IPFW?
Your help would be appreciated.
Thank?s
Wolfgang
1999 Jul 28
1
skewness, kurtosis
...elated (please excuse
this misuse of the list):
Is there something like a "quantile-coefficient of kurtosis"??
Maybe:
k = (2b-a)/a with a = x_{p} - x_{1-p}, b = x_{q} - x_{1-q},
x_{} are quantiles, and p and q are chosen so that k=0 for the normal
distribution.
Thanks for help!!
WK
----------------------------------------------------------
Wolfgang Koller, koller2 at fgr.wu-wien.ac.at
Research Institute for European Affairs
Vienna University of Economics and Business Administration
Althanstrasse 39-45, 1090 Vienna, Austria
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-....
1999 Oct 13
1
dataframe transposition
...things go wrong. Although the end result looks
the same, page() shows the structure to be quite different compared
to building it by hand.
What is going on? And how am I supposed to do this. (And no,
I didn't expect that the output of plot() would be sensible!)
Thanks again,
Michael
> wk
authorisor count(*)
1 JMC 4
2 LCA 259
3 MCM 136
4 MDH 266
5 ML 27
6 SA 1
>
>page(wk)
structure(list(authorisor = c("JMC", "LCA", "MCM", "MDH", "ML",
"SA&qu...
2010 Jul 21
1
post hoc test for lme using glht ?
...people are successfully using the glht function from the multcomp package to
perform post-hoc tests. I've tried multiple iterations, but can't seem to
get it to work. Here is (a subset of) what I have been trying. Any help
would be greatly appreciated:
> model.3<-lme(fixed=Totnum~Wk*Pop, random=~1|nUID, data=nona)
#Wk has 6 levels, 0-5; Pop has 2 levels; nUID is a unique ID given to each
individual (multiple individuals from each population were re-measured each
week)
> anova(model.3)
numDF denDF F-value p-value
(Intercept) 1 592 649.7753 <.0001
Week...
2007 Nov 27
2
exporting a split list
Using wk <- with(d, split(word, kind)), I get the following class table:
wk$`1`
[1] "a" "bra" ... # (*)
wk$`10`
"ca" "dabra" ...
Now I need to export it in the following format:
class num_members examples
1 23 a bra ...
10...
2008 Jun 06
3
R loop
...703,2658165,2659303,2661531,2660914),c(2,2,2,2,1,1))
y <-
rep(c(6476767,6475013,6475487,6479659,6477004,6476388),c(2,2,2,2,1,1))
date <- rep(as.Date(c("2008-01-01","2008-01-14","2008-01-28"), format
= "%Y-%m-%d"),c(4,4,2))
a<-data.frame(x,y,date)
a$wk<-rep(c(0),nrow(a))
a
set<-as.Date(c("2008-01-01"), format = "%Y-%m-%d")
set
for(i in a$date){
if (a$date[i]>set & a$date[i]<set +7 ){a$wk<-1}else
if (a$date[i]>set +7){a$wk<-2}else {a$wk<-3}
}
a
Kind regards
andy
Andrew McFadden MVS BVSc
Incursi...
2006 Aug 22
2
Winbind Problem after Update from 3.0.21b -> 3.0.23b
...7:28:46, 10] nsswitch/winbindd.c:process_request(287)
process_request: request fn LIST_USERS
[2006/08/21 17:28:46, 3] nsswitch/winbindd_user.c:winbindd_list_users(734)
[ 0]: list users
[2006/08/21 17:28:46, 10] nsswitch/winbindd_cache.c:refresh_sequence_number(399)
refresh_sequence_number: WK time ok
[2006/08/21 17:28:46, 10] nsswitch/winbindd_cache.c:refresh_sequence_number(427)
refresh_sequence_number: WK seq number is now -1
[2006/08/21 17:28:46, 10] nsswitch/winbindd_cache.c:wcache_server_down(297)
wcache_server_down: server for Domain WK down
[2006/08/21 17:28:46, 10] nsswitch/...