Displaying 20 results from an estimated 24 matches for "monsanto".
2017 Jul 20
2
dynamically create columns using a function
...-2.2, 0)), .Names = c("id", "TEST_SET_NAME", "YLD_BE_REG1",
"YLD_BE_REG2", "IS_GG", "GG_REG1", "GG_REG2"), row.names = c(NA,
-6L), class = "data.frame")
Thanks.
Nilesh
This email and any attachments were sent from a Monsanto email account and may contain confidential and/or privileged information. If you are not the intended recipient, please contact the sender and delete this email and any attachments immediately. Any unauthorized use, including disclosing, printing, storing, copying or distributing this email, is pro...
2017 Jul 21
0
dynamically create columns using a function
...em, f, c("REG1", "REG2"))
If you are working with large datasets it might not be the best solution as
my understanding is that this method involves a lot of copying.
Hope it helps,
Elie Canonici Merle
2017-07-20 17:55 GMT+02:00 DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com>:
> Hi,
> I am writing a function to dynamically create column names and fill those
> columns with some basic calculations. My function "demo_fn" takes argument
> "blup_datacut" and I like to use the contents of those arguments to
> dynamically create new...
2017 Dec 14
1
help with recursive function
...ll
stack to abort and return nothing. It does not mean to stop now and return
a result.
Does the function give the correct results if you just leave out the
stopifnot line?
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Thu, Dec 14, 2017 at 9:11 AM, DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com> wrote:
> Eric: I will try and see if I can figure out the issue by debugging as
> you suggested. I don?t know why my code after stopifnot is not getting
> executed where I like the code to run the funlp2 function when the if
> statement is TRUE but when it is false, I like it...
2017 Dec 14
0
help with recursive function
...t.
When the stopifnot condition is met, I like to get the output from if statement saved.
Anyway, I will keep trying.
Again, Thanks for your help!
Nilesh
From: Eric Berger [mailto:ericjberger at gmail.com]
Sent: Thursday, December 14, 2017 10:29 AM
To: DIGHE, NILESH [AG/2362] <nilesh.dighe at monsanto.com>
Cc: r-help <r-help at r-project.org>
Subject: Re: [R] help with recursive function
If you are trying to understand why the "stopifnot" condition is met you can replace it by something like:
if ( any(dat2$norm_sd >= 1) )
browser()
This will put you in a debugging ses...
2014 Oct 09
0
Write R code to feed the world!
We are hiring an R programmer to make biologists better at crop improvement:
http://jobs.monsanto.com/missouri/research-and-development/jobid6130734-r-programmer-jobs
Please apply if you are passionate about building R culture and infrastructure.
. . .. . ... . ... . .. . . ... . ... . . . .. .. .... .. . ... .
Barrett Foat, PhD
Genome Data Analytics Team Lead
Mons...
2017 Dec 14
3
help with recursive function
...riables, e.g.
> dat$norm_sd
HTH,
Eric
On Thu, Dec 14, 2017 at 5:33 PM, Eric Berger <ericjberger at gmail.com> wrote:
> The message is coming from your stopifnot() condition being met.
>
>
> On Thu, Dec 14, 2017 at 5:31 PM, DIGHE, NILESH [AG/2362] <
> nilesh.dighe at monsanto.com> wrote:
>
>> Hi, I accidently left out few lines of code from the calclp function.
>> Updated function is pasted below.
>>
>> I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is
>> not TRUE?
>>
>>
>>
>> I would a...
2017 Dec 14
0
help with recursive function
...se {
df2 <- recursive_funlp()
return(df2)
}
}
df3 <- recursive_funlp(dataset = dat1, func = funlp2)
df3
}
From: Eric Berger [mailto:ericjberger at gmail.com]
Sent: Thursday, December 14, 2017 8:17 AM
To: DIGHE, NILESH [AG/2362] <nilesh.dighe at monsanto.com>
Cc: r-help <r-help at r-project.org>
Subject: Re: [R] help with recursive function
My own typo ... whoops ...
!( any(dat2$norm_sd >= 1 ))
On Thu, Dec 14, 2017 at 3:43 PM, Eric Berger <ericjberger at gmail.com<mailto:ericjberger at gmail.com>> wrote:
You seem to hav...
2017 Dec 14
2
help with recursive function
...se {
df2 <- recursive_funlp()
return(df2)
}
}
df3 <- recursive_funlp(dataset = dat1, func = funlp2)
df3
}
From: Eric Berger [mailto:ericjberger at gmail.com]
Sent: Thursday, December 14, 2017 8:17 AM
To: DIGHE, NILESH [AG/2362] <nilesh.dighe at monsanto.com<mailto:nilesh.dighe at monsanto.com>>
Cc: r-help <r-help at r-project.org<mailto:r-help at r-project.org>>
Subject: Re: [R] help with recursive function
My own typo ... whoops ...
!( any(dat2$norm_sd >= 1 ))
On Thu, Dec 14, 2017 at 3:43 PM, Eric Berger <ericjberg...
2017 Dec 14
0
help with recursive function
The message is coming from your stopifnot() condition being met.
On Thu, Dec 14, 2017 at 5:31 PM, DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com> wrote:
> Hi, I accidently left out few lines of code from the calclp function.
> Updated function is pasted below.
>
> I am still getting the same error ?Error: !(any(data1$norm_sd >= 1)) is
> not TRUE?
>
>
>
> I would appreciate any help.
>
> Nilesh
>...
2017 Dec 14
2
help with recursive function
...gt; any(!dat2$norm_sd) >= 1
>
> when you possibly meant to write
>
> !( any(dat2$norm_sd) >= 1 )
>
> i.e. I think your ! seems to be in the wrong place.
>
> HTH,
> Eric
>
>
> On Thu, Dec 14, 2017 at 3:26 PM, DIGHE, NILESH [AG/2362] <
> nilesh.dighe at monsanto.com> wrote:
>
>> Hi, I need some help with running a recursive function. I like to run
>> funlp2 recursively.
>> When I try to run recursive function in another function named "calclp" I
>> get this "Error: any(!dat2$norm_sd) >= 1 is not TRUE".
&...
2008 Mar 14
1
maximum allowed matrix size of R
...is e-mail in error, please notify the sender immediately. Please delete it and all attachments from any servers, hard drives or any other media. Other use of this e-mail by you is strictly prohibited.
All e-mails and attachments sent and received are subject to monitoring, reading and archival by Monsanto, including its subsidiaries. The recipient of this e-mail is solely responsible for checking for the presence of "Viruses" or other "Malware". Monsanto, along with its subsidiaries, accepts no liability for any damage caused by any such code transmitted by or accompanying this e...
2010 Jun 11
0
How to code mixed model with nested factors in lmer
...is e-mail in error, please notify the sender immediately. Please delete it and all attachments from any servers, hard drives or any other media. Other use of this e-mail by you is strictly prohibited.
All e-mails and attachments sent and received are subject to monitoring, reading and archival by Monsanto, including its subsidiaries. The recipient of this e-mail is solely responsible for checking for the presence of "Viruses" or other "Malware". Monsanto, along with its subsidiaries, accepts no liability for any damage caused by any such code transmitted by or accompanying this e...
2012 Aug 07
0
Bayesian estimates for the 1st-order Spatial Autoregressive model
...his e-mail in error, please notify the sender immediately. Please delete it and
all attachments from any servers, hard drives or any other media. Other use of this e-mail by you is strictly prohibited.
All e-mails and attachments sent and received are subject to monitoring, reading and archival by Monsanto, including its
subsidiaries. The recipient of this e-mail is solely responsible for checking for the presence of "Viruses" or other "Malware".
Monsanto, along with its subsidiaries, accepts no liability for any damage caused by any such code transmitted by or accompanying
this e...
2001 Feb 16
0
Regarding Trademark Dispute.
...lapse
in exercising the rights is interpretted, under US Law, as an
abandonment of the mark.
Please find attached the response from SSH that I received. If the
matter should come to court, it should be sufficient evidence
that SSH is no longer under trademark protection:
Received: by ems2165-01.monsanto.com id
<01C09823.2677DA00 at ems2165-01.monsanto.com>; Fri, 16 Feb 2001
09:17:10-0500
Message-ID:
<8D7A3D2453C7D2119CD800A0C9EAF09702750899 at ems2165-01.monsanto.com>
From: "ylo at mystery.acr.fi at INTERNET"
<IMCEACCMAIL-ylo+40mystery+2Eacr+2Efi+20at+20INTERNET at cereon....
2017 Dec 14
0
help with recursive function
...this expression (and some others like it)
Namely, you write
any(!dat2$norm_sd) >= 1
when you possibly meant to write
!( any(dat2$norm_sd) >= 1 )
i.e. I think your ! seems to be in the wrong place.
HTH,
Eric
On Thu, Dec 14, 2017 at 3:26 PM, DIGHE, NILESH [AG/2362] <
nilesh.dighe at monsanto.com> wrote:
> Hi, I need some help with running a recursive function. I like to run
> funlp2 recursively.
> When I try to run recursive function in another function named "calclp" I
> get this "Error: any(!dat2$norm_sd) >= 1 is not TRUE".
>
> I have neve...
2017 Dec 14
2
help with recursive function
...oaded via a namespace (and not attached):
[1] compiler_3.4.1 magrittr_1.5 assertthat_0.2.0 R6_2.2.2 tools_3.4.1
[6] glue_1.1.1 tibble_1.3.3 Rcpp_0.12.11 stringi_1.1.5 pkgconfig_2.0.1
[11] rlang_0.1.2 bindr_0.1
This email and any attachments were sent from a Monsanto email account and may contain confidential and/or privileged information. If you are not the intended recipient, please contact the sender and delete this email and any attachments immediately. Any unauthorized use, including disclosing, printing, storing, copying or distributing this email, is pro...
2004 Feb 12
2
samba
samba samba ?
how are you?
After a serious accident, I am ready to go back to work. At monsanto they let the solutions dry out in these silly racks. I don' work ther any more. Then I was working at the Danforth plant sience center. tThe whole building was down toone autoclave so I was there early But I dropped a 4l erlenmeyer and slipped and fell on the broken glass. They had to take me...
2002 Nov 08
1
writer/researcher needs your help
...ssouri USA.
He regularly gives workshops on issues of ethics, values and culture. He has
been quoted in a number of related pieces in publications including the Wall Street Journal, The Christian Science Monitor and Workforce.com. Lawler has worked with companies in the US and Europe - including Monsanto, Pulitzer Publishing, and the Danforth Foundation. He has been a lecturer at Washington University and at Webster University. He has written for numerous publications.
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from...
2002 Nov 08
1
writer/researcher needs your help
...ssouri USA.
He regularly gives workshops on issues of ethics, values and culture. He has
been quoted in a number of related pieces in publications including the Wall Street Journal, The Christian Science Monitor and Workforce.com. Lawler has worked with companies in the US and Europe - including Monsanto, Pulitzer Publishing, and the Danforth Foundation. He has been a lecturer at Washington University and at Webster University. He has written for numerous publications.
--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To unsubscribe from...
2003 Dec 20
0
Fw: Re: CAMPANHA NATAL SEM BAIXARIA - PARTICIPE!
...DE
DESARMAMENTO DO CIDAD=C3O HONESTO
Estas ONGs (Organiza=E7=F5es Neo-Governamentais) pagam cerca de R$ 20.000,0=
0 por segundo (isso mesmo, por segundo!) para o Casset=F3ides&Boiol=F3ides =
veicularem quadros=20
---------------------------------------------------------------------
N=C3O COMPRE
MONSANTO TRANSG=CANICOS (MULTINACIONAL)
fale.conosco@la2.monsanto.com
0800 15 6242=20
---------------------------------------------------------------------
N=C3O COMPRE
SAND=C1LIAS GRENDENE
sac@grendene.com.br
0800 99 88 98
Sand=E1lias Ipanema, Grendha, Melissa, Ginga, Rider, etc
---------------------------...