Displaying 20 results from an estimated 21 matches for "nomi".
Did you mean:
nmi
2005 Nov 21
4
Can't figure out warning message
Hi,
I apologize for the previous posting, where the message was not formatted
properly. Here is a better version:
I have written the following function to check whether a vector has elements
satisfying monotonicity.
is.monotone <- function(vec, increase=T){
ans <- TRUE
vec.nomis <- vec[!is.na(vec)]
if (increase & any(diff(vec.nomis,1) < 0, na.rm=T)) ans <- FALSE
if (!increase & any(diff(vec.nomis,1) > 0, na.rm=T)) ans <- FALSE
ans
}
This works correctly, but I get this error message as below.
> x <- 2:10
> is.monotone(x)
[1] T...
2005 Nov 21
1
(no subject)
Hi,
I have written the following function to check whether a vector has elements
satisfying monotonicity.
is.monotone <- function(vec, increase=T){
# check for monotonicity in time-stamp data for cortisol collection
ans <- TRUE
vec.nomis <- vec[!is.na(vec)]
if (increase & any(diff(vec.nomis,1) < 0, na.rm=T)) ans <- FALSE
if (!increase & any(diff(vec.nomis,1) > 0, na.rm=T)) ans <- FALSE
ans
}
This works correctly, but I get this error message as below.
> x <- 2:10
> is.monotone(x)
[1] TRUE
Warning...
2006 Nov 09
1
Merge: how can I keep discarded values?
Good morning,
I am merging two datasets and I would like to save the non-matching rows
in a separate file.
The problem is how to retrieve the non-matching rows in R.
Example:
DATASET A
code nomi
A1 Franco
A2 Mario
A3 Andrea
A4 Sandro
A5 Luca
DATASET B
code book
A1 Guerra e Pace
A1 Storia di Roma
A2 La coscienza di Zeno
A4 Ivanhoe
A1 I Malavoglia
A2 Jude the obscure
when merging two rows are unmatched:
A3 Andrea
A...
2002 Sep 09
1
Re: Biplot function of PCA
...vations, by their name, or , by the group or the cluster they
belong.
For instance:
tab is a data.frame (4 variables x 52 obsevations)
pc.tab_princomp(tab,cor=TRUE)
biplot.princomp(pc.tab)
km_kmeans(tab,3,100)
cl_cutree(hclust(dist(tab)),k=3)
# I would like to obtain:
biplot.princomp(pc.tab, nomi=cl)
#or
biplot.princomp(pc.tab,nomi=km$cluster)
Like that I could see how the clusters are spread on the PCA.
So, my question is,
Shall I write myself this new function ?
Perhaps someone already done-it? But how could I know.
Thank you taking your time for my problem.
Best regards
Francois...
2010 Feb 15
1
error message in endseq
...#39;is.logical' being evaluated was:
(subset)
I understand that the problem seems to be with the list of variables I use
to define what my sequences are.
I tried changing lots of things but nothing helped.
Have I skipped an important step?
Many thanks for your help (I have to sleep now).
nomis
--
View this message in context: http://n4.nabble.com/error-message-in-endseq-tp1555607p1555607.html
Sent from the R help mailing list archive at Nabble.com.
2004 Nov 10
1
Loading some function at R startup
...#39;ve built these functions usefell for me to
import/export data from/to Excel:
importa.da.excel<-function(){read.delim2("clipboard",
dec=",")
## questa funzione consente di importare dati da Excel
in R
## selezionare in Excel le celle che contengono i
dati,
## compresi in nomi delle colonne
## Autore: Vito Ricci email:vito_ricci at yahoo.com
## Data di creazione: 09/11/04
}
esporta.in.excel<-function(dati){write.table(dati,"clipboard",
sep="\t", dec=",", col.names=NA)
## questa funzione consente di esportare dati in Excel
da R
## passare...
2001 Nov 05
1
Problem to transfer Splus functions
...-----------------------------------------------------
# Cree des noms pour le tableau x si ces noms n'existent pas
# Par defaut, les noms de ligne commencent par "i", ceux de colonnes
# par "v"
#--------------------------------------------------------------------------
nomi <- if((!is.null(dimnames(x)) && !is.null(dimnames(x)[[1]])
) && length(dimnames(x)[[1]]) != 0) dimnames(x)[[1]]
else (paste(nl, 1:nrow(x), sep = ""))
nomv <- if(!is.null(dimnames(x)) && !is.null(dimnames(x)[[2]]) &&
length(dimnames(x)[[2]]) !=...
2018 Nov 22
2
NTP strangeness...
....27.1.3]
Strato: 4
vdcud1.ad.fvg.lnf.it[10.99.1.3:123]:
ICMP: errore IP_REQ_TIMED_OUT - nessuna risposta entro 1000ms
NTP: +0.0203878s differenza di tempo dall'orologio locale
RefID: brucaliffo.ud.lnf.it [10.99.1.1]
Strato: 3
Avviso:
La risoluzione inversa dei nomi è il massimo sforzo. Può non essere
corretta, poiché il campo RefID dei pacchetti di data e ora non è uniforme nelle diverse
implementazioni NTP e potrebbe non utilizzare indirizzi IP.
And in a site, all works as expected, eg:
C:\Users\gaio>w32tm /query /source
vdcsv1.ad.fvg.lnf.it
C:\Us...
2013 Sep 26
1
Installing Rcplex
...seppe La Masa, 19
20156 Milano
e-mail: luciani@marionegri.it
Tel: +39 02 3901 4271
Fax: +39 02 39014267
------------------------------------------------------------
----------
L'IRCCS - Istituto di Ricerche Farmacologiche Mario Negri desidera ringraziare i 13.768 donatori, di cui non conosce i nomi, che nel 2011 hanno devoluto il loro 5 per mille a sostegno della nostra attività e assicurare loro che tutto quanto ricevuto sarà esclusivamente impiegato per le nostre ricerche. Siamo naturalmente molto grati a tutti coloro che anche quest'anno hanno deciso di rinnovare ancora la fiducia nel...
2012 Nov 26
3
R strange behaviour when building huge concatenation
...");
code.addRCode("(cdBgMsle <- mean((log(cdData$p2x+1)-log(cdBgCe+1))^2));");
code.addRCode("(corr <- cor(cdData$p2x, cdBgCe));");
caller.setRCode(code);
caller.runAndReturnResult("cdBgCe");
ROutputParser parser = caller.getParser();
ArrayList<String> nomi = parser.getNames();
for (String nome : nomi) {
double[] previsioni = parser.getAsDoubleArray(nome);
logger.info("Nome "+nome+" lunghezza valori "+previsioni.length);
for (int i = 0; i < previsioni.length; i++) {
logger.info("Valore "+ previsioni[i]);
}
}
} catch (E...
2018 Nov 22
0
NTP strangeness...
...d.fvg.lnf.it[10.99.1.3:123]:
> ICMP: errore IP_REQ_TIMED_OUT - nessuna risposta entro 1000ms
> NTP: +0.0203878s differenza di tempo dall'orologio locale
> RefID: brucaliffo.ud.lnf.it [10.99.1.1]
> Strato: 3
>
> Avviso:
> La risoluzione inversa dei nomi è il massimo sforzo. Può non essere
> corretta, poiché il campo RefID dei pacchetti di data e ora
> non è uniforme nelle diverse
> implementazioni NTP e potrebbe non utilizzare indirizzi IP.
>
> And in a site, all works as expected, eg:
>
> C:\Users\gaio>w32tm /query /...
2002 May 18
0
Importante!
...di tenere in piedi un Sistema che genera benessere per tutti. I soldi contenuti nelle lettere vengono spediti direttamente alle case dei partecipanti, e non raccolti da "'anonimi enti" come in altri Sistemi.
Su questa e-mail, che sar? la tua lista se decidi di partecipare, ci sono i nominativi di 5 persone comuni come te, provenienti dall'Italia e da tutto il mondo.
Come hai letto nella testimonianza di Claudio Tommasi, l'italiano che ha avuto la cortesia di tradurre questa famosa e-mail in italiano, stiamo cercando di far rimanere questa e-mail in Italia. Quindi considera...
2013 Mar 18
0
[linux-linus test] 17325: regressions - trouble: broken/fail/pass
...hristian.eggers@kathrein.de>
Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 Mar 29
0
[linux-linus test] 17454: regressions - FAIL
...hristian.eggers@kathrein.de>
Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 Apr 10
0
[linux-linus test] 17612: regressions - FAIL
...hristian.eggers@kathrein.de>
Christian Ehrhardt <ehrhardt@linux.vnet.ibm.com>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 May 05
0
[linux-linus test] 17901: regressions - FAIL
...inux.vnet.ibm.com>
Christian Engelmayer <christian.engelmayer@frequentis.com>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 May 07
0
[linux-linus test] 17916: regressions - FAIL
...inux.vnet.ibm.com>
Christian Engelmayer <christian.engelmayer@frequentis.com>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 Jun 16
0
[linux-linus test] 18150: regressions - FAIL
...an.engelmayer@frequentis.com>
Christian Gieseler <christiangieseler@yahoo.de>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 Jun 23
0
[linux-linus test] 18181: regressions - trouble: broken/fail/pass
...an.engelmayer@frequentis.com>
Christian Gieseler <christiangieseler@yahoo.de>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....
2013 Aug 29
0
[linux-linus test] 18805: regressions - FAIL
...an Gieseler <christiangieseler@yahoo.de>
Christian Gmeiner <christian.gmeiner@gmail.com>
Christian Hemp <c.hemp@phytec.de>
Christian Herzig <christian.herzig@keymile.com>
Christian Hildner <christian.hildner@siemens.com>
Christian Hohnstaedt <chohnstaedt@innominate.com>
Christian Koenig <christian.koenig@amd.com>
Christian Kujau <lists@nerdbynature.de>
Christian König <christian.koenig@amd.com>
Christian König <deathsimple@vodafone.de>
Christian Lamparter <chunkeey@googlemail.com>
Christian Melki <christian....