search for: facult

Displaying 20 results from an estimated 77 matches for "facult".

Did you mean: faculty
2018 Jul 11
3
Mitel only supported VMware virtualization platform for some CentOS servers based products
...ed product on a physical server ; - Stay on KVM/libvirt and lose Mitel support for this product. I'm seeking for technical/legal arguments which could help us to stay on KVM/libvirt without losing Mitel support. Regards, -- *Jean-Marc LIGER Ing?nieur Syst?mes et R?seaux de Communication * FACULT? DE M?DECINE Direction Technique, Informatique, R?seaux et Multim?dia 15 rue de l??cole de M?decine ? 75270 Paris cedex 06 T?l : +33 (0)1 76 53 00 71 -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos-virt/attachments/201807...
2003 Aug 06
2
(no subject)
...ve.func<-function(data,Name){ Name<-as.character(data[,1]) indexZZ<-grep("ZZ",Name,value=FALSE) data<-data[!indexZZ,] #doesn't work, give an empty dataframe print(slide) } Thanks :| Nolwenn Le Meur ******************************************** Nolwenn Le Meur INSERM U533 Facult? de m?decine 1, rue Gaston Veil 44035 Nantes Cedex 1 France Tel: (+33)-2-40-41-29-86 (office) (+33)-2-40-41-28-44 (secretary) Fax: (+33)-2-40-41-29-50 mail: nolwenn.lemeur at nantes.inserm.fr
2003 Apr 25
2
R compilation problem on Sun Solaris 2.5.1
...ddition: Warning message: cannot open compressed file 'usr/share/src/R-1.7.0/library/methods/R/all.rda' Execution halted Does anybody know what mistake I made ? Thanks in advance, -- Ir. Yves Brostaux - Statistics and Computer Science Dpt. Gembloux Agricultural University 8, avenue de la Facult? B-5030 Gembloux (Belgium) T?l : +32 (0)81 62 24 69 E-mail : brostaux.y at fsagx.ac.be Web : http://www.fsagx.ac.be/si/
2004 Nov 30
3
Creating a factor from a combination of vectors
...I was looking for a vectorized solution (apply style) binding data-frames df and cas, but didn't succeed avoiding the for loop. Could anybody bring me the ligths over the darkness of my ignorance ? Thank you very much in advance. -- Ir. Yves BROSTAUX Unit?? de Statistique et Informatique Facult?? universitaire des Sciences agronomiques de Gembloux (FUSAGx) 8, avenue de la Facult?? B-5030 Gembloux Belgique T??l: +32 81 62 24 69 Email: brostaux.y at fsagx.ac.be
2002 Aug 07
3
Reading characters using read.table()
...in order to make it unable to interpret "T" as "True" ?? Or is there any other functions enabling to import text data from a text file ?? Thanks in advance, Florent _______________________________________ Florent BATY CNRS UMR 5558 Dynamique des Populations Bact?riennes Facult? de M?decine Lyon-Sud 69921 OULLINS, BP 12 FRANCE tel : +33 (0)4 78 86 31 67 fax : +33 (0)4 78 86 31 49 _______________________________________ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.h...
2008 Apr 04
2
Re: Use PATH_MAX for pathname char arrays.
Hello, Using PATH_MAX is not a good idea: POSIX says that that definition is facultative, in case the system does not impose any limit on path length. Some systems may also set PATH_MAX to a quite high value, and we would hence consume a lot of stack. Samuel _______________________________________________ Xen-devel mailing list Xen-devel@lists.xensource.com http://lists.xensour...
2003 Apr 02
4
randomForests predict problem
...part) > sb.rp <- rpart(Class~., data=Soybean[-test,]) > sb.rp.pred <- predict(sb.rp, Soybean[test,], type="class") Thank you all for any advice you can give to me. -- Ir. Yves Brostaux - Statistics and Computer Science Dpt. Gembloux Agricultural University 8, avenue de la Facult? B-5030 Gembloux (Belgium) T?l : +32 (0)81 62 24 69 E-mail : brostaux.y at fsagx.ac.be Web : http://www.fsagx.ac.be/si/
2005 Jan 21
2
Selecting a subplot of pairs
...within x's and y's. I managed to recreate such a plot using a script with layout(), axis() and so on, but I was wondering if there already exists a clean function for such a task, in case I would encounter this problem again ? -- Ir. Yves BROSTAUX Unit? de Statistique et Informatique Facult? universitaire des Sciences agronomiques de Gembloux (FUSAGx) 8, avenue de la Facult? B-5030 Gembloux Belgique T?l: +32 81 62 24 69 Email: brostaux.y at fsagx.ac.be
2011 Jun 15
1
Re connecting to SIP Provider with virtual IP, from pacemaker cluster
...the aliased. For exemple if you have eth0 the real, eth0:0 the virtual, you can try to add in your failback/failover cluster script something like this : # when the virtual ip come up ip r a "SIP_PROVIDER_IP" via "GATEWAY_IP" dev eth0:0 # when the virtual ip come down, maybe facultative because the route is deleted when the interface fall down ip r d "SIP_PROVIDER_IP" via "GATEWAY_IP" dev eth0:0 Regards, C?dric Le 15/06/11 19:01, asterisk-users-request at lists.digium.com a ?crit : > Date: Wed, 15 Jun 2011 17:28:36 +0200 > From:rosenberger at ta...
2002 Aug 01
2
Building a function
...he arguments and the formula in a list or a vector ? When I use the function as.function(), I don't know how to define explicitly the names of my variables as formal arguments. Thanks _______________________________________ Florent BATY CNRS UMR 5558 Dynamique des Populations Bact?riennes Facult? de M?decine Lyon-Sud 69921 OULLINS, BP 12 FRANCE tel : +33 (0)4 78 86 31 67 fax : +33 (0)4 78 86 31 49 _______________________________________ -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.h...
2002 Sep 24
2
Iterative data.frame
...like to create data.frame and increment their name to finally merge them. Does anybody has a solution ? Something like that ? n<-6 for (i in 1:n) { m[i]<-data.frame(name,value) m<-merge(m[i]:m[n]) } Nolwenn ******************************************** Nolwenn Le Meur INSERM U533 Facult? de m?decine 1, rue Gaston Veil 44035 Nantes Cedex 1 France Tel: (+33)-2-40-41-29-86 (office) (+33)-2-40-41-28-44 (secretary) Fax: (+33)-2-40-41-29-50 mail: nolwenn.lemeur at nantes.inserm.fr ******************************************** -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-...
2014 Aug 14
2
Problem with roaming profiles (always synced but never read)
...Engineer D?partement Informatique | Department of computer science Responsable Info SER | SER IT Manager Universit? de Rouen | University of Rouen ------------------------------------------------------------------- Coordonn?es / Contact : Universit? de Rouen Facult? des Sciences et Techniques - Madrillet Avenue de l'Universit? CS 70012 76801 St Etienne du Rouvray CEDEX FRANCE T?l : +33 (0)2-32-95-51-86 Mob : +33 (0)6-74-71-45-64 -------------------------------------------------------------------
2014 Jul 28
1
NFSv4 + Kerberos understanding
...Engineer D?partement Informatique | Department of computer science Responsable Info SER | SER IT Manager Universit? de Rouen | University of Rouen ------------------------------------------------------------------- Coordonn?es / Contact : Universit? de Rouen Facult? des Sciences et Techniques - Madrillet Avenue de l'Universit? CS 70012 76801 St Etienne du Rouvray CEDEX FRANCE T?l : +33 (0)2-32-95-51-86 Mob : +33 (0)6-74-71-45-64 -------------------------------------------------------------------
2009 Oct 02
4
smbd Crash
...D?partement Informatique | Department of computer science Responsable R?seau et T?l?phonie | Telecom and Network Manager Universit? de Rouen | University of Rouen ------------------------------------------------------------------- Coordonn?es / Contact : Universit? de Rouen Facult? des Sciences et Techniques - Madrillet Avenue de l'Universit? - BP12 76801 St Etienne du Rouvray CEDEX T?l : +33 (0)2-32-95-51-86 Fax : +33 (0)2-32-95-51-87 -------------------------------------------------------------------
2011 Nov 29
2
Parameters setting in functions optimization
...ch are very bad results in that case) Anyone with previous experiences in optimization of several parameters could indicate me the right way to enter the initial parameters in this kind of functions ? Thanks a lot for helping me ! Diane -- Diane Bailleul Doctorante Universit? Paris-Sud 11 - Facult? des Sciences d'Orsay Unit? Ecologie, Syst?matique et Evolution D?partement Biodiversit?, Syst?matique et Evolution UMR 8079 - UPS CNRS AgroParisTech Porte 320, premier ?tage, B?timent 360 91405 ORSAY CEDEX FRANCE (0033) 01.69.15.56.64
1997 Dec 08
3
R-alpha: Bug in tapply in the Windows version of September
...&& all(unlist(lapply(ans, length)) =3D=3D 1)) { ans <- unlist(ans, recursive =3D FALSE) if(length(INDEX) =3D=3D 1) { names(ans) <- namelist[[1]] } else { dim(ans) <- extent dimnames(ans) <- namelist } return(ans) } Muriel Comblain M=E9thodologie Quantitative Facult=E9 de Sociologie Universit=E9 de Li=E8ge=20 Bvd du Rectorat, 7 B4000 Liege, Belgique Tel: +32 4 366 30 91 E-mail: Muriel.Comblain -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-devel mailing list -- Read http://www.ci.tuwien.ac.at/~hornik/R/R-FAQ.html Send &quo...
2002 Jun 17
2
layout() and postscript()
...eans of a loop and I want to save each graph in the same file (splitting making the device by the number of graphs). Do I have to use the par(matrix()) option, the layout() function or the split.screen() one ? Thanks Nolwenn *------------------------------------------* Nolwenn Le Meur INSERM U533 Facult? de M?decine 1, rue Gaston Veil 44035 Nantes cedex 1 t?l: +33(0)2-40-41-29-86 fax: +33(0)2-40-41-29-50 e-mail: nolwenn.lemeur at nantes.inserm.fr *------------------------------------------* -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read...
2005 Jan 10
3
Mixing portrait/landscape in a postscript file
...ion to look better. I tried to include [...] par.settings = list(horizontal=FALSE) [...] in the lattice plots arguments, but with no success. Is there a way to mix different page orientation in a single postscript device that I missed ? -- Ir. Yves BROSTAUX Unit? de Statistique et Informatique Facult? universitaire des Sciences agronomiques de Gembloux (FUSAGx) 8, avenue de la Facult? B-5030 Gembloux Belgique T?l: +32 81 62 24 69 Email: brostaux.y at fsagx.ac.be
2014 Sep 23
4
smbd doesn't start anymore
...Engineer D?partement Informatique | Department of computer science Responsable Info SER | SER IT Manager Universit? de Rouen | University of Rouen ------------------------------------------------------------------- Coordonn?es / Contact : Universit? de Rouen Facult? des Sciences et Techniques - Madrillet Avenue de l'Universit? CS 70012 76801 St Etienne du Rouvray CEDEX FRANCE T?l : +33 (0)2-32-95-51-86 Mob : +33 (0)6-74-71-45-64 -------------------------------------------------------------------
2005 Mar 22
3
Lattice : factor levels in the margins
...arguments could help doing this, as I can't insert multiple xlab's (x variable and A levels, or y variable and B levels) and can't decide which side to use for writing them. Does anybody have a hint ? Thank you very much ! -- Ir. Yves BROSTAUX Unit? de Statistique et Informatique Facult? universitaire des Sciences agronomiques de Gembloux (FUSAGx) 8, avenue de la Facult? B-5030 Gembloux Belgique T?l: +32 81 62 24 69 Email: brostaux.y at fsagx.ac.be