search for: hasa

Displaying 7 results from an estimated 7 matches for "hasa".

Did you mean: has
2016 Apr 18
1
project test data into principal components of training dataset
..., PC3 = wine.new.bind[,3], PC4 = wine.new.bind[,4], classes = wine.new.bind$class) g.test <- ggplot(df.pred, aes(PC1, PC2, color = classes, shape = classes)) + geom_point() + stat_ellipse() g.test -- Our solar system is the cream of the crop http://hasa-labs.org
1999 Sep 02
2
Samba , dhcp, wins on Solaris 2.x
Hi All I have a samba server running on solaris 2.5.1. On the same machine there is a ISC dhcpd server which is configured to supply all the tcp/ip information to the NT Clients dynamically (ip, wins, domainname, dns, router etc.). So my NT Clients get only a name and are configured to get their tcp/ip information from the dhcpd server. Now, everything runs fine browsing, NetBios name
2010 Aug 19
1
Ayuda en mineria de datos
Saludos Cordiales Soy de Ecuador y me he enterado de este foro de R y me parece muy chevere (Interesante) poder compartir los conocimientos y más que todo solicitar algunos tips sobre este paquete que en el Ecuador es un software nuevo y que está tomando fuerza.   Les comento que estoy tratando de desarrollar un modelo para la detección de lavado de dinero y de las múltiples documentos, indican
2010 Apr 16
3
Is it ok to apply the z.test this way?
Dear R-users, I want to check if certain values are from random distribution, that includes values between 0-1. So, it is not really normal even though shapiro.test says it is highly normal... Can I do something like this and think that the values given are right. z.test is from package TeachingDemos. -------------------------------------------------------------------------------
2020 Mar 26
0
[PATCH nbdkit 9/9] tests/old-plugins: Add plugin from nbdkit 1.18.2.
...!3or?2DktmW?^c-~oR8bCW6eO*6v@{fv-y|hBV^qsZt z;eOiP+YkMR5I&nd_x8hoX+Q1m>POF`{pdN|5C74A=nwUyXG=f)clSg8VLy86`{Dmt zKm1cbKb!wO{qSqhe>Q%wD=I$r66r_JDKMUOy!xU4b3gRbe)M<r!@s>B{&C<}@v)a} zAe^ng1^wu$2LC9#65t2%Ia`0{L(jR&aHVAh7n1pBDbqhhDVV_NG+$Zq`Ia?DBff;@ zk83`k;`7$c_636R;IdFc3&!haSA?UHV4Z(yILPbHUgK+6?e{f?BK~mbmY@=gCPJ%y zjsC#OPy%AUU_2g)`ohr$zZQx{l*rP+@{mT<Xk2Lw_%(lGO{77I#e@EU(h!b9rr93` zJ4B<gV8k~87mcf7qNaqR4O&=g2n3fVm!S?d4a<EEP0P_{D6GV^CQ{{VPHMr`)a-I4 zoCpS&gVUc#1kq2%hMqSx_+r6$B1(2^YkVt96kmO0RVWhh%?~D$%|Y3aKM?Q*S8KtD zro>joLz-EEcET~g)}%BtgZ-#!426U6AT0CU5{yT...
2020 Mar 26
15
[PATCH nbdkit 0/9] Create libnbdkit.so
This creates libnbdkit.so as discussed in the following thread: https://www.redhat.com/archives/libguestfs/2020-March/thread.html#00203 test-delay-shutdown.sh fails for unclear reasons. This series starts by reverting "tests: Don't strand hung nbdkit processes" which is because several other tests fail randomly unless I revert this patch. I didn't investigate this yet so it
2020 Aug 05
10
[RFC] Machine Function Splitter - Split out cold blocks from machine functions using profile data
Greetings, We present “Machine Function Splitter”, a codegen optimization pass which splits functions into hot and cold parts. This pass leverages the basic block sections feature recently introduced in LLVM from the Propeller project. The pass targets functions with profile coverage, identifies cold blocks and moves them to a separate section. The linker groups all cold blocks across functions