Skip to content

Search Archives

Search tips
from:Name Search by author name, e.g. from:Duncan Murdoch "exact phrase" Match an exact phrase word1 word2 Match messages containing both words Date range Use the date pickers to filter results to a time period

Use the list dropdown to narrow results to a specific mailing list. Combine from: with other terms to filter by author and content.

60 results for “from:Domenico Vistocco”

simple problems
Domenico Vistocco · Dec 6, 2007 · r-help

marciarr wrote: > Hello R users, > I have been looking through Help files and Nabble list for the answers for > these simple questions, but it seems to be fruitless. > 1- in a data frame with two columns, x and y, how...

Use of the index of a for loop to assign values to the rows of a series of variables
Domenico Vistocco · Mar 22, 2006 · r-help

Dear All, It is difficult to summarize the question in few words. So, please, look at the following example. Thanks in advance, domenico ---------------------------------------------------------------------------------------------------------------------------------------------------------- rm(list = ls()) posfix=1:5* 10 for(i in posfix) assign(paste("matX.",i,sep=""),matrix...

how to add points/lines to a surface plot
Domenico Vistocco · Feb 10, 2009 · r-help

Dear All, is there a way to superimpose points and/or lines on a surface plot? Below I try to explain my problem. Suppose I have the following surface plot (likelikood for the normal variable when both parameters are unknown...

Expert systems
Domenico Vistocco · Jan 29, 2008 · r-help

I know that there are packages implementings the probabilistic expert systems (the so-called probabilistic networks or bayesian networks). You find (at least) the following packages: bnlearn (bayesian network structure learning) deal (learning bayesian networks with mixed variables) G1DBN (for...

binary AND operators in R
Domenico Vistocco · Mar 29, 2009 · r-help

You should find the functions: bitAnd, bitOr and bitXor in the bitops package. Ciao, domenico mauede at alice.it wrote: > I cannot find any R function or operator that performs a binary AND operation, as performed by Fortran built-in...

R2HTML how to pair graphic.png and table
Domenico Vistocco · Dec 6, 2007 · r-help

You could use a table with one row and two columns: HTML("<TABLE><TD>",file=HTMLoutput) HTML(tab,file=HTMLoutput) HTML("</TD><TD>",file=HTMLoutput) HTMLInsertGraph(graf,file=HTMLoutput,caption="Esempio di grafico") HTML("</TD></TABLE>",file=HTMLoutput) domenico PS...

Multivariable barplot
Domenico Vistocco · Jan 22, 2008 · r-help

Pilar Loren wrote: > Hi, is it possible to do a multivariable barplot with ggplot2? > > I have something like that: > > >> df >> > LENGTH LAT > 091639 10.002 42.26282 > 091640 30.808 42.26834 > 091641 21.591 42.31689 > 091642 22.030...

ggplot2: Choosing colours
Domenico Vistocco · Dec 3, 2007 · r-help

qplot(data=dataset, x, y, colour=z) ONKELINX, Thierry wrote: > Dear useRs, > > I'm trying to specify the colour of a factor with ggplot2. The example > below gets me close to what I want, but it's missing a legend...

ggplot2: Choosing colours
Domenico Vistocco · Dec 4, 2007 · r-help

qplot(data=dataset, x, y, colour=z) ONKELINX, Thierry wrote: > Dear useRs, > > I'm trying to specify the colour of a factor with ggplot2. The example > below gets me close to what I want, but it's missing a legend...

side by side plots
Domenico Vistocco · Jan 7, 2008 · r-help

hpbenton at scripps.edu wrote: > Hello everyone, > > I have an overlay plot it's nice but you can't see all the data. I would > like to know if there is a way to get a plot that gives a...

Using boxplot in a daily time series
Domenico Vistocco · Dec 15, 2007 · r-help

From your post it is not clear how the data are organized. Supposing they are in a data frame you could use the ~ sintax. For example: timeColumn=as.Date("01-01-1970") + 1:500 timeSeries=rnorm(500) df=data.frame...

Multiple stacked barplots on the same graph?
Domenico Vistocco · Dec 4, 2007 · r-help

Perhaps this could be useful: > x=scan() 11.81 10.51 1.95 2.08 2.51 2.05 1.98 0.63 0.17 0.20 12.49 13.56 2.81 3.13 4.58 0.70 0...

Something similar to data.frame, but allows variables with unique lengths?
Domenico Vistocco · Feb 26, 2009 · r-help

Jason Rupert wrote: > I have a tightly coupled collection of variables with different lengths and types (some characters and others numerics). I looked at the documentation for data.frame, but indicates that it expects all variables to have the same...

contingency table on data frame
Domenico Vistocco · Jan 22, 2008 · r-help

Karin Lagesen wrote: > I am sorry if this is a faq or tutorial somewhere, but I am unable to > solve this one. > > What I am looking for is a count of how many different > categories(numbers in this case) that...

colour coded points in biplot
Domenico Vistocco · Dec 6, 2007 · r-help

If you are using correspondence analysis you could see the plot.ca function in the ca library. Petr PIKAL wrote: > Dear all > > I tried to make a biplot with color coded labels but I was not successful. > Searching archives I...

Download and Import xls files in R
Domenico Vistocco · Mar 7, 2009 · r-help

Jacopo Anselmi wrote: > Dear List, > > I am trying to solve a problem: I have approximately 100 Excel > spreadsheets each with approximately 4 sheet each that I would like to > download and import in R for analysis. > > Unfortunately i realized (i...

newbie lapply question
Domenico Vistocco · Dec 5, 2007 · r-help

I am not sure to understand your problem, but it seems to me that you can use directly the function on the range of the dates: > x=as.Date(c('2007-01-01','2007-01-02')) > fff=function(x){y...

Array dimnames
Domenico Vistocco · Dec 15, 2007 · r-help

dave mitchell wrote: > Dear all, > Possibly a rudimentary question, however any help is greatly appreciated. I > am sorting a large matrix into an array of dim(p(i),q,3). I put each entry > into a corresponding matrix (1 of...

dyn.load problem under linux
Domenico Vistocco · Feb 9, 2007 · r-help

Dear HelpeRs, I am trying to use an thirdy-part library under Linux (the library is developed both for Windows and for Linux). I have tried different solutions (with the library developer) but we are not able to solve the...

lineplot in ggplot2 with different colour and linetype
Domenico Vistocco · Feb 18, 2009 · r-help

Harsh wrote: > Hi list, > I would like to use ggplot2 in creating a line plot with 4 lines (groups), 2 > of which I want in colour and the remaining two as dotted lines. > > ### R code ### > library(ggplot2) > > ### create data #### > vals...

Can't find what you're looking for? Try searching with Google .