search for: pharmas

Displaying 20 results from an estimated 136 matches for "pharmas".

Did you mean: pharma
2004 Dec 01
2
request for help on statistical applications in pharma
Hi all there Can some one who have experience and knowledge in the pharma industry give me broad details on the subject "Statistical applications for pharma industry". I am new to the subject i.e. what kind of statistical tools used being unique /or atleast specific for pharma industry. It will be of great help as i am actively looking into the subject. though i am quite familiar
2005 May 10
0
Re: 80-page Pharma complimentary report-Emerging Business models in Pharma (PR#7847)
------=_NextPart_84815C5ABAF209EF376268C8 Content-type: text/plain; charset=ISO-8859-1 Hello! This is just a quick note to inform you about an 80-page report on the Pharmaceutical Industry that we're able to provide you - at no cost. Compiled by some of the best analysts in the industry, the report provides an insight into the latest trends and strategies in the Pharmaceutical Industry.
2007 Jun 11
8
R vs. Splus in Pharma/Devices Industry
Following up to some extent on Friday's discussion regarding the 'validation' of R, could I ask the list group's opinion on possible advantages of R over Splus from a pharma/devices perspective? I wish to exclude the obvious price difference, which doesn’t seem to carry as much weight as I would have thought. Besides, I have noticed many former Splus users gravitating towards R,
2003 Nov 14
6
index of max value ?
Is there a function in R, which would return index of maximum value in a vector ? e.g. > v <- round(10*rnorm(8)) > v [1] 6 -3 -6 15 7 9 0 -19 > max(v) [1] 15 ??? index.max(v) ??? 4
2011 Dec 15
2
XP SP3 can't authenticate
Hello, I have a strange problem. I've re-included a XP SP3 pro in my samba domain. Only the administrators can authenticate and enter in a windows session. All other users can't. smb version : 3.3.5 Any help would be appreciate ... regards -- Herv? H?noch Responsable informatique Institut Sainte Catherine 1750, chemin du Lavarin, 84000 Avignon T?l?phone : 04.90.27.57.44
2001 Nov 12
1
Survey: R in Pharma
Hi All, We're interested in finding other users of R in pharmaceutical companies. Please reply if you are or know of someone who is. -Greg Gregory R. Warnes, Ph.D. Pfizer Global Research and Development LEGAL NOTICE Unless expressly stated otherwise, this message is confidential and may be privileged. It is intended for the addressee(s) only. Access to this E-mail by anyone else is
2003 Aug 29
1
Fw: Forcing password changes using SAMBA as PDC
Hi, I did as suggested, and still have the same problem. I am still able to login to samba with another users password that does not require password changes. This seems to me that the problem is related to PAM password changing. I have tried change the various PAM options in the smb.conf file, but cannot get it to work. Depending on the options, it either asks for a password or not. When it asks
2008 Mar 28
0
Vacancy Principal Postdoc PK-PD modeling The Netherlands
________________________________ Principal Post-Doctoral Fellow PKPD modelling platform (full time) Leiden University, Leiden, The Netherlands <javascript:doredirect();> Job description ________________________________ TOP Institute Pharma (TI Pharma) has granted our proposal to set up a mechanism-based PK-PD modelling platform. This platform focuses on the transfer of
2008 Feb 22
0
R expertise
Dear all, Should you be interested in a career at our mechanism-based PK-PD modeling platform, please read the remainder of this message. Best wishes, Margot Beukers Unique PK-PD modeling platform established in The Netherlands Are you our ambitious IT platform manager with a profound drive to contribute to a new era of drug research? PK-PD modeling platform Prof. dr.
2008 Mar 28
0
Vacancy Post Doc PK-PD modeling the Netherlands
Post-Doctoral Fellowship Modelling of Cardiovascular Safety (full time) Leiden University, Leiden, The Netherlands <javascript:doredirect();> Job description TOP Institute Pharma (TI Pharma) has granted our proposal to set up a mechanism-based PKPD modelling platform. This platform focuses on the transfer of knowledge from academia to the pharmaceutical industry and is a
2008 Jul 17
4
REvolution computing
Hi, everybody. Sorry to bring up the subject again but I have visited the revolution computing web page, but its not clear when or what will be the new release be. Does anybody have information about that?. Does anybody know if the version that will be released will be validated?. I have been reading the previous mails about validation and I work in a Pharma company and validation is a big
2003 Nov 12
4
column extraction by name ?
I have a data frame (df) with colums x, y and z. e.g. df <- data.frame(x = sample(4), y = sample(4), z = sample(4)) I can extract column z by: df$z or df[3] I can also extract columns x,y by: df[1:2] or by df[-3]. Is it possible to extract x,y columns in a "symbolic" fashion i.e. by equivalent of df[-z] (which is illegal) ??? Or alternativeley, is there an equivalent of
2007 Nov 10
2
interpreting an LME regression result...
Any help would be most appreciated. (Don't make me get down on my hands and knees and beg for help, cause I'll do it!!) My boss has me learning R and doing nested regression with the report due Mon (Friday night statistics...fun. ). Anyway, here's my problem: In a regression equation not accounting for the fact that people are nested in families, the result for Z variable is VERY
2009 Jul 20
0
Vacancy - PhD / Post-doctoral position at the University of Leiden.
TOP Institute Pharma (TI Pharma) has granted our proposal to set up a mechanism-based PKPD modelling platform. This platform focuses on the transfer of knowledge from academia to the pharmaceutical industry and is a collaborative effort of four excellent academic institutes and six leading global pharmaceutical industries. Unique to this platform is the availability of shared databases on
2003 Dec 10
3
e1071:svm - default epsilon = 0.1 (NOT 0.5) (PR#5671)
In e1071 package/svm default epsilon value is set to 0.1 and not 0.5 as documentation says. R
2008 Nov 10
0
Postdoc Positions Available at Leiden University The Netherlands
Two Postdoctoral fellows (fulltime) Leiden University, Leiden, The Netherlands Job description ________________________________________ TOP Institute Pharma (TI Pharma) has granted our proposal to set up a mechanism-based PK-PD modelling platform. This platform focuses on the transfer of knowledge from academia to the pharmaceutical industry and is a collaborative effort of
2003 Dec 09
2
problem with pls(x, y, ..., ncomp = 16): Error in inherit s( x, "data.frame") : subscript out of bounds
I don't know the details of pls (in the pls.pcr package, I assume), but if you use validation="CV", that says you want to use CV to select the best number of components. Then why would you specify ncomp as well? Andy > From: ryszard.czerminski at pharma.novartis.com > > When I try to use ncomp parameter in pls procedure I get > following error: > > >
2003 Oct 27
2
how to select random rows ?
How can I select random subsets (rows!) from a data set ? If I generate simple data set > a <- data.frame(x=1:2, y = NaN, z = 2:1) > a x y z 1 1 NaN 2 2 2 NaN 1 I can select random subsets (colums) very easily using sample function: > sample(a, 2) z y 1 2 NaN 2 1 NaN I expected that using transpose of a would do the same for rows, but I am getting rather unexpected
2010 Mar 26
1
BaselR
BaselR - The new R meeting We are pleased to announce the new R meeting to be held in Basel, Switzerland. BaselR will be held from 6:30-9:30pm on Tues, Apr 27 at TransBARent: http://transbarent.business.sv-group.ch Doors open at 6:30,pm with the presentations starting at 7:00pm Introduction: What is Basel R? Andreas Krause:... Graphing Pharma Data Yann Abraham: Graphics Charles Roosen: Web
2000 Jun 28
3
Samba error codes
Hi, I am a newbie to this list and to Samba, and have a concern about my Samba servers. I am getting a number of messages on the consoles of both my Samba servers, it reads "smb-retry: signal failed, error=-3" Can someone please explain this to me? Also, is there a list of error codes for Samba? Regards Enrico Payne IT Manager - Pharma Natura http://www.pharma.co.za