Displaying 6 results from an estimated 6 matches for "itop".
Did you mean:
_top
2009 Jan 16
2
Winsorizing Multiple Variables
...ze each
variable, and return a new data frame with all the variables in the
original order.
Thanks for any help!
-Karl
#The function I'm working from
win<-function(x,tr=.2,na.rm=F){
if(na.rm)x<-x[!is.na(x)]
y<-sort(x)
n<-length(x)
ibot<-floor(tr*n)+1
itop<-length(x)-ibot+1
xbot<-y[ibot]
xtop<-y[itop]
y<-ifelse(y<=xbot,xbot,y)
y<-ifelse(y>=xtop,xtop,y)
win<-y
win
}
#Produces an example data frame, ss is the observation id, vars 1-5
are the variables I want to winzorise.
ss
=
c
(1
:
5
);var1
=...
2006 Mar 14
3
Daily changetrustpw breaks authentication
...AD environments
where this breaks our ability to enumerate/authenticate with the domain.
In both instances, we see something similar to the following in the
winbind logs:
(ntlm_auth): [2006/03/14 14:11:16, 0] utils/ntlm_auth.c:winbind_pw_check(429)
(ntlm_auth): Login for user [DOMAIN]\[USER]@[ITOPER] failed due to [Access denied]
(ntlm_auth): [2006/03/14 14:11:16, 0] utils/ntlm_auth.c:manage_squid_ntlmssp_request(603)
(ntlm_auth): NTLMSSP BH: NT_STATUS_ACCESS_DENIED
Re-joining the host to the domain fixes the problem, even though it still
appears to have had a valid machine account in the...
2006 Feb 08
6
filter performance/optimization questions
hi
i''m using htb + u32 filters, and i was wondering if there is something one can
optimize at this stage. i have a lot of filters (~ 50.000 / interface, and
there are two interfaces), and around 4500 classes / interface. the traffic
going through this machine is something around 210-230mbit/s at 50kpps.
as you can imagine, the load is pretty high. in fact (as it''s a dual xeon at
2011 Jul 19
6
[PATCH 0/6] Move the infor for the help/man page in the source
The following series implement a way to generate the help messages and
the btrfs man page from the sources comments for the "btrfs" commanda
.
The syntax and the detailed help of every subcommand are stored in
the comments before the function which implements the subcommand.
The fact that the help messages and the man page are generated from the
same source should help to avoid
2014 Jan 28
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
Hi Stepan,
Sorry for the delay. It's great that you are working on MergeFunctions
as well and I agree, we should definitely try to combine our efforts to
improve MergeFunctions.
Just to give you some context, the pass (with the similar function
merging patch) is already being used in a production setting. From my
point of view, it would be better if we focus on improving its
capability
2014 Jan 30
3
[LLVMdev] MergeFunctions: reduce complexity to O(log(N))
...003-06-08-VirtualFunctions.ll 4 4118 0 0.01 4102 0 0.01 4102
2003-06-13-Crasher.ll 4 1886 0 0.01 1870 0 0.01 1870
2003-06-16-InvalidInitializer.ll 1 883 0 0.01 871 0 0.01 871
2003-06-16-VolatileError.ll 1 857 0 0.01 845 0 0.01 845
2003-07-06-IntOverflow.ll 5 6583 0 0.01 6574 0 0.01 7412
2003-07-08-BitOpsTest.ll 2 4018 0 0.01 4009 0 0.01 4009
2003-07-09-LoadShorts.ll 2 22686 0 0.01 22677 0 0.01 22677
2003-07-09-SignedArgs.ll 4 19145 0 0.01 19136 0 0.01 19136
2003-07-10-SignConversions.ll 3 4961 0 0.01 4952 0 0.01 4952
2003-08-05-CastFPToUint.ll 4 3762 0 0.01 3753 0 0.01 3753
2003-08-11-VaListArg.ll...