search for: lorenzo

Displaying 20 results from an estimated 598 matches for "lorenzo".

2010 May 17
3
applying quantile to a list using values of another object as probs
...lt;- lapply(mylist, function(x) {matrix (rnorm(9), 3, 3)}) for (i in 1:length(B)) { quant <- lapply (mylist, quantile, probs=B[i]) } But quant returned the quantiles calculated using only the last value ([3,3]) of the matrix B. What am I doing wrong? Thank you for your help Lorenzo [[alternative HTML version deleted]]
2019 Jul 09
3
[R] Curl4, Quantmod, tseries and forecast
...loaded via a namespace (and not attached): [1] compiler_3.6.1 tools_3.6.1 I run a standard debian stable 10 + the ranke debian backports -- no fancy stuff. I do not believe I am the only one experiencing this. Cheers L. On Sun, Jul 07, 2019 at 03:16:20PM +0200, Ralf Stubner wrote: >Hi Lorenzo > >Joshua Ulrich <josh.m.ulrich at gmail.com> schrieb am So. 7. Juli 2019 um >14:16: > >> Hi Lorenzo, >> >> On Sun, Jul 7, 2019 at 6:42 AM Lorenzo Isella <lorenzo.isella at gmail.com> >> wrote: >> > ** byte-compile and prepare package for laz...
2013 Mar 24
3
Parallelizing GBM
...ag.fraction = 0.5, nTrain = (n_train/2), keep.data = FALSE, verbose = TRUE, var.names = NULL, response.name = NULL) Does anybody know an easy way to parallelize the model (in this case it means simply having 4 cores on the same machine working on the problem)? Any suggestion is welcome. Cheers Lorenzo
2010 Sep 22
3
extracting random effects from model formula
...t; and "BA|SITE") from this model formula: Full_model <- formula (VAR ~ (1|SITE) + (1+SPECIES|SITE) + (BA|SITE) + HEIGHT + COND + NN_DIST) I tried: terms(Full_model) labels(terms(Full_model)) but I could not distinguish between random and fixed effects. thanks Lorenzo [[alternative HTML version deleted]]
2013 Feb 09
3
Addressing Columns in a Data Frame
...st the floor. Consider the following DF <- data.frame( x=1:10, y=10:1, z=rep(5,10), a=11:20 ) mn<-names(DF) but then I cannot retrieve a column by doing e.g, DF$mn[2] I tried to play with the quotes and so on, but so far with no avail. Any suggestion is welcome. Cheers Lorenzo
2020 Nov 04
2
Metadata in LLVM back-end
Le 04/11/20 à 17:40, David Greene a écrit : > Sorry about the late reply. > > Lorenzo Casalino <lorenzo.casalino93 at gmail.com> writes: > >>>>> - Should not impact compile time excessively (what is "excessive?") >>>> Probably, such estimation should be performed on >>> Did something get cut off here? >> Uops. Yep, I remov...
2010 Nov 29
2
Problems in running affylmGUI
...folders from the root library to the user library, and have obtained the same issue. I would really appreciate if you could help me setting this up. Could you please send me an easy guideline to get affylmGUI working? Otherwise, we could use TeamViewer if that would be easier. Kind regards, Lorenzo Lorenzo Melchor, PhD Mammary Stem Cell Team The Breakthrough Breast Cancer Research Centre (ICR) 237 Fulham Road SW3 6JB lorenzo.melchor at icr.ac.uk The Institute of Cancer Research: Royal Cancer Hospital, a charitable Company Limited by Guarantee, Registered in England under Company No. 534...
2007 Aug 08
2
Relocating Axis Label/Title --2
...(paste(D[agg]," [nm]")), cex.lab=1.2 ) axis(2, mgp=c(0, 0.2, -2)) dev.off() With mgp() I can tune the distance between the ticks and the tick labels, but how can I move the axis label? I would like to move the one along y to visualize correctly the exponent "3". Kind Regards Lorenzo On 08/08/07, Lorenzo Isella <lorenzo.isella at gmail.com> wrote: > Dear All, > I am experiencing some problems with relocating an axis title. > I visited the following link before posting: > > http://tolstoy.newcastle.edu.au/R/help/05/05/5283.html > > But this is not e...
2005 Jan 13
6
Shorewall Web Site mirrored in Italy
Lorenzo Martignoni at Univesita` degli Studi di Milano in Milan has established a mirror of the Shorewall web site. http://italy.shorewall.net http://cert-it.dico.unimi.it/shorewall Thanks Lorenzo! -Tom -- Tom Eastep \ Nothing is foolproof to a sufficiently talented fool Shoreline, \ http://sh...
2009 Jul 20
3
Histograms on a log scale
...quot;xy", pch=20, col="blue", main="Log-normal distribution", xlab="Value", ylab="Frequency") This is very close to what I need, but how can I have filled rectangles in the plot, so that it looks more like a traditional histogram? Kind Regards Lorenzo
2012 Aug 06
2
Problem in sharing printers
...rinter has no name. Same happens if I go back to server shares' "root" and I try to add the printer, I get asked for the drivers, provide them, then when finishes copyin it complains the printer has no name or it's not on the server anymore. What could be the problem? thanks -- Lorenzo Milesi - lorenzo.milesi at yetopen.it GPG/PGP Key-Id: 0xE704E230 - http://keyserver.linux.it
2013 Mar 25
2
Reassign Multiple Factors to same Factor Value
...g Levels: a b c d e f g Now, I would like to replace levels ('e','f','g') of df$y with a new level 'other' so that levels(df$y) returns a b c d other What is the easiest way to achieve this, considering that df$y[5:7]<-'other' Does not work? Cheers Lorenzo
2011 Dec 15
3
From Distance Matrix to 2D coordinates
.... Of course, the solution is not unique (given one solution, I can translate or rotate all the points by the same amount and generate another solution), but any correct solution will do for me. Any idea about how I can achieve that? Is there any clustering package that can help me? Many thanks. Lorenzo
2006 May 30
1
rake db_schema_import on vanilla schema.rb
...it was set to use sqlsever before) and attempted the import. I haven''t changed a thing in the schema.rb script and, even though I do have generated a migration, I think I don''t even need it and rake simply ignores it (or I guess it does). The rake script exits like this: C:\Lorenzo\therapy>rake db_schema_import (in C:/Lorenzo/therapy) rake aborted! undefined method `[]='' for #<Mysql> (See full trace by running task with --trace) Anybody knows what the story is? Thanks in advance, Lorenzo -- Posted via http://www.ruby-forum.com/.
2012 Oct 26
2
Stata Database & R
Dear All, I am given some data to analyze. The data is in the form of a Stata database (.dta file). What is the best way to import it into an R dataframe? Is there any particular caveat I should be aware of? Many thanks Lorenzo
2010 Sep 27
3
name ONLY one column
Hi R-users I can not change the name of one column only of my matrix. my_matrix <- matrix (1:12,ncol=3) colnames(my_matrix)[1] <- 'myname' Error in dimnames(x) <- dn : length of 'dimnames' [2] not equal to array extent thank you for your help Lorenzo [[alternative HTML version deleted]]
2005 Nov 08
2
Samba PDC and Office2003 Big Problem
...t from the Open File menu and to top left in the application (word or excel). I know it is normal the first time you use office with a new user but it is doing it every time also after several logons of that user. It this a common problem? How do you think I can fix this? Thank you very much, Lorenzo? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? ? ?? ?? ?? ?? ?? ?? ?? ?? ?? ? ?? ?? ?? ?? ?? ?? ?? ?? ? ? ?? ?? ?? ?? ?? ?? ?? ?? ? ? ?Lorenzo Allori Systems Administrator Office: +393491924516 Mobile: +393398612411 The Medici Archive Project <lallori@medici.org>
2016 Apr 19
3
Problem with X11
...8 [7] LC_PAPER=en_GB.utf8 LC_NAME=C [9] LC_ADDRESS=C LC_TELEPHONE=C [11] LC_MEASUREMENT=en_GB.utf8 LC_IDENTIFICATION=C attached base packages: [1] stats graphics grDevices utils datasets methods base Anybody understands what is going on here? Regards Lorenzo
2019 May 02
2
Llvm-mca library.
Hi Lorenzo, I’ll answer the first question you have: > I would like to use llvm-mca to estimate the IPC of a given code region. I am interested in the library version (https://reviews.llvm.org/D50929?id=162210<https://urldefense.proofpoint.com/v2/url?u=https-3A__reviews.llvm.org_D50929-3Fid-3D162210&a...
2019 Sep 18
2
How to debug passes
...j) did you register the dummy pass? > RegisterPass<DummyPass> X("dummypass", "whatever"); Is any error/warning triggered when loading the library, executing "opt" or during compilation? Could you attach the fragment containing the "DummyPass"? Lorenzo -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.llvm.org/pipermail/llvm-dev/attachments/20190918/1d8261ca/attachment.html>