search for: lemmas

Displaying 18 results from an estimated 18 matches for "lemmas".

Did you mean: lemma
2006 Aug 06
6
View passing empty or no value to controller -- help
Hi, I have the following view: <%= start_form_tag ( { :action => ''find'' }, :method => ''get'') %> <p> <%= text_field_tag :lemma, params[:lemma] %> </p> <%= link_to "Find It", :class => "submit" %> <%= end_form_tag %> And the following find action in the controller:
2018 May 09
3
NAs produced by integer overflow, but only some time ...
I have problem with integer overflow that I cannot understand. I have a character vector curr.lemmas with the following properties: length(curr.lemmas) # 61224 length(unique(curr.lemmas)) # 2652 That vector is the input to the following function: yules.k1 <- function(input) { m1 <- length(input); temp <- table(table(input)) m2 <- sum("*"(temp, as.numeric(names(temp))...
2018 May 09
0
NAs produced by integer overflow, but only some time ...
...essarily obscure, and your use of the return function at the end of your function is redundant. On May 8, 2018 7:54:26 PM PDT, "Stefan Th. Gries" <stgries at gmail.com> wrote: >I have problem with integer overflow that I cannot understand. > >I have a character vector curr.lemmas with the following properties: > >length(curr.lemmas) # 61224 >length(unique(curr.lemmas)) # 2652 > >That vector is the input to the following function: > >yules.k1 <- function(input) { > m1 <- length(input); temp <- table(table(input)) > m2 <- sum("*...
2010 Nov 17
3
Find in R and R books
Hello everyone. In matlab  (again) there is a fucntion find that returns you the indexes where the condition in find was met. I want the same functionality in R i.e find(Mydata>2) to return all the indexes where the condition is met. Do you know something like that? Also when I try to search in google using for example the word R inside the search lemma I get very few results as the R confuses
2018 May 09
1
NAs produced by integer overflow, but only some time ...
...e of the return function at the end of your function is redundant. > > On May 8, 2018 7:54:26 PM PDT, "Stefan Th. Gries" <stgries at gmail.com> > wrote: > >I have problem with integer overflow that I cannot understand. > > > >I have a character vector curr.lemmas with the following properties: > > > >length(curr.lemmas) # 61224 > >length(unique(curr.lemmas)) # 2652 > > > >That vector is the input to the following function: > > > >yules.k1 <- function(input) { > > m1 <- length(input); temp <- table(t...
2006 Sep 12
4
variables in object names
Is there any way to put an argument into an object name. For example, say I have 5 objects, model1, model2, model3, model4 and model5. I would like to make a vector of the r.squares from each model by code such as this: rsq <- summary(model1)$r.squared for(i in 2:5){ rsq <- c(rsq, summary(model%i%)$r.squared) } So I assign the first value to rsq then cycle through models 2 through
2007 Sep 07
2
Running a PERL script from R
Is there a way to run a simple perl script from R? Kenneth B. Pierce Jr. Research Ecologist Landscape Ecology, Modeling, Mapping and Analysis Team PNW Research Station - USDA-FS 3200 SW Jefferson Way, Corvallis, OR 97331 ken.pierce@oregonstate.edu 541 750-7393 http://www.fsl.orst.edu/lemma/gnnfire http://www.fsl.orst.edu/R_users/index.php [[alternative HTML version deleted]]
2006 Oct 18
2
Nested source() errors
Does anyone know of any issues with nesting source() calls within multiple scripts? I have at least one script which always finds errors when I source it but runs fine when run on its own. It containd source() calls to other scripts and it seems to fail during the first nested source() command. Ken Kenneth B. Pierce Jr. Research Ecologist Landscape Ecology, Modeling, Mapping and Analysis
2006 Sep 20
1
problem coercing truncated character vector to levels
Dear R wizes, I have a data.frame of species abundances with column names consisting of 4 letter codes then an underscore and a number like this: abco_1, abco_2, abco_3, psm_1, psme_2, psme_3, etc. I would like to get an identifier for all the abco, and psme and other species etc. I used spec.fact<-substring(names(spec.count),1,4) To make a vector of the first 4 letters of
2009 Aug 24
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week New packages ------------ Updated packages ---------------- New reviews ----------- This email provided as a service for the R community by http://crantastic.org. Like it? Hate it? Please let us know: cranatic at gmail.com.
2004 Aug 06
1
Protocol documentation
On Sun, 10 Feb 2002, wjs wrote: > Stupid? No!! You're a hero! Cheers; sadly I haven't noticed anyone actually replying :(. Time to find a version of telnet (or write one) that will allow me to connect to an icecasting http server. ------------- 12-guage pump-action lemma <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage:
2019 May 28
1
Upgraded from CentOS 6.X to 7.X, samba not working
On Mon, May 27, 2019 at 08:40:19AM +0100, Rowland penny via samba (samba at lists.samba.org) wrote: > On 27/05/2019 01:26, Jobst Schmalenbach via samba wrote: > > On Fri, May 24, 2019 at 03:45:31PM +0200, L.P.H. van Belle via samba (samba at lists.samba.org) wrote: > > > You should have looked before upgrading. ... > > I actually did, I remember now (after I read your
2013 May 08
4
lme4 y residuales
Buenos días; Estoy intentando aprender algo de sobre los modelos lineales mixtos. Estoy siguiendo el libro "Multilevlel analysis: techniques and applications" de Joop Hox. Estoy intentado reproducir las tablas y gráficos que trae el libro con el paquete lmer. En este libro se indica que en la comprobación de los supuestos del modelo hay que estudiar los gráficos de residuales tanto
2004 Aug 06
4
Protocol documentation
I may be being very stupid, but I can't find any documentation for the protocol that the icecast server uses - any pointers please? (I'm interested in writing a client). Thanks very much people. <p>--- >8 ---- List archives: http://www.xiph.org/archives/ icecast project homepage: http://www.icecast.org/ To unsubscribe from this list, send a message to
2008 Aug 15
1
Vectorization of duration of the game in the gambler ruin's problem
Hey fellas: In the context of the gambler's ruin problem, the following R code obtains the mean duration of the game, in turns: # total.capital is a constant, an arbitrary positive integer # initial.capital is a constant, an arbitrary positive integer between, and not including # 0 and total.capital # p is the probability of winning 1$ on each turn # 1-p is the probability of loosing 1$ # N
2019 May 27
2
Upgraded from CentOS 6.X to 7.X, samba not working
On Fri, May 24, 2019 at 03:45:31PM +0200, L.P.H. van Belle via samba (samba at lists.samba.org) wrote: > You should have looked before upgrading. ... I actually did, I remember now (after I read your suggestions). On this page (https://wiki.samba.org/index.php/Updating_Samba) it actually says: If you update to Samba 4 and later, you do not have to migrate to Active Directory. That was
2010 Jul 18
6
CRAN (and crantastic) updates this week
CRAN (and crantastic) updates this week New packages ------------ * allan (1.0) Alan Lee http://crantastic.org/packages/allan Automates Large Linear Analysis Model Fitting * andrews (1.0) Jaroslav Myslivec http://crantastic.org/packages/andrews Andrews curves for visualization of multidimensional data * anesrake (0.3) Josh Pasek http://crantastic.org/packages/anesrake This
2010 Nov 24
0
4. Rexcel (Luis Felipe Parra)-how to run a code from excel
Hi Louis, It's simple to run a r script from the excel spreadsheet. Just write your code, source("C:\\Quantil Aplicativos\\Genercauca\\BackwardSelectionNC.r"), into a cell of a workingsheet. Then right-click the cell and select "run code" in the pop-up menu. Hope this will help you. Best, Bernard -----????----- ???: r-help-bounces at r-project.org [mailto:r-help-bounces