search for: classi

Displaying 20 results from an estimated 31 matches for "classi".

Did you mean: class
2004 Oct 15
1
cluster analysis
...Firs I create a distance matrix using dist: distanxe <- dist(drops) Then I perform cluster analysis via hclust: clusters <- hclust(distanze) At this point I want to view the tree plot, and use plot: plot(clusters) Then, once decided which clusters to select, I start identify: classi <- identify(clusters) and click on all clusters to be selected; I then finish by right-clicking. My understanding is that "classi" is now a list containing all individual data, grouped in clusters. In my case "classi" contained 10 objects, simply named [1], [2], etc. To o...
2009 Aug 12
1
calling a function with dynamically generated buttons
...t;Treshold:", thresh), side=3, col="blue") } lb <- tklabel(base, text="Barplot:") tkgrid(lb, row=4, column=0) for(i in 1:(reihen-1)) { anzeige <- data.matrix(dataframe[i,-c(spalten)]) namen <- names(anzeige) tit <- paste(classi[i], "\nTotal Threshold for", classi[i], ":", dataframe[i, spalten]) but <- tkbutton(base, text = classi[i], command = function() {plotten(mat = anzeige, namen = namen, titel = tit)}) tkgrid(but, row=4, column=i, sticky="e") } The buttons are...
2015 Nov 14
0
Processed: reassign 804993 to libjs-pie-doc, fixed 804993 in 1.0.0+dfsg-2, affects 804993 ..., tagging 805060 ...
Processing commands for control at bugs.debian.org: > reassign 804993 libjs-pie-doc 1.0.0+dfsg-1 Bug #804993 {Done: Michael Fladischer <fladi at debian.org>} [libjs-pie-doc,python-django-classy-tags-doc] python-django-classy-tags-doc and libjs-pie-doc: error when trying to install together Bug reassigned from package 'libjs-pie-doc,python-django-classy-tags-doc' to
2005 Jan 05
0
matrix no longer "is" array in 2.0.1?
...ays in the slot (which I do). The following (in 2.0.1) illustrates the point: > setClass("foo",representation("array")) [1] "foo" > a <- new("foo",array(NA,2:4)) > b <- new("foo",matrix(NA,2,3)) Error in "as<-"(`*tmp*`, Classi, value = c(NA, NA, NA, NA, NA, NA)) : No method or default for as() replacement of "foo" with Class="matrix" This last error did not occur under 1.9.1. This becomes a practical consideration in an extract method: > setMethod("[", c("foo"), func...
2008 Jun 24
0
Lockdown 0.5.10
What: Lockdown <http://stonean.com/projects/show/lockdown> is an authorization/authentication gem for RubyOnRails 2.x This version bundles Classy Inheritance<http://stonean.com/projects/show/classy-inheritance>to simplify the management screens. There is also a lot of template cleanup in this release. *There were no changes to the security engine.* If you have questions, please
2008 Apr 26
0
[LLVMdev] ParamAttr Patch - Alignment fix
On Apr 26, 2008, at 19:09, Anders Johnsen wrote: > On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote: > >> On Apr 26, 2008, at 17:41, Anders Johnsen wrote: >> >> >>> +void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, >>> unsigned align) { >>> + CallSite Call = CallSite(unwrap<Instruction>(Instr)); >>> +
2005 Jan 07
1
S4 class no longer accepts matrix in array slot under 2.0.1
...mensional arrays in the slot. The following (in 2.0.1) illustrates the point: > setClass("foo",representation("array")) [1] "foo" > a <- new("foo",array(NA,2:4)) > b <- new("foo",matrix(NA,2,3)) Error in "as<-"(`*tmp*`, Classi, value = c(NA, NA, NA, NA, NA, NA)) : No method or default for as() replacement of "foo" with Class="matrix" This last error did not occur under 1.9.1. I conclude that in this context the methods package does not recognise "matrix" as a subclass of "arra...
2009 Jun 18
1
validObject throws non-caught error when slot doesn't exist
...an error that isn't caught internally (and thus not controllable by 'test' argument) when retrieving a non-existent slot. The offending line of code is shown below: > validObject function (object, test = FALSE, complete = FALSE) { ... for (i in seq_along(slotTypes)) { classi <- slotTypes[[i]] sloti <- slot(object, slotNames[[i]]) # offending line of code One potential patch is to substitute the offending line with sloti <- try(slot(object, slotNames[[i]]), silent = TRUE) if (class(sloti) == "try-error") { errors...
2008 Apr 26
2
[LLVMdev] ParamAttr Patch - Alignment fix
On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote: > On Apr 26, 2008, at 17:41, Anders Johnsen wrote: > > Hi Gordon, > > > > Thanks a lot for the feedback. I can see I've been way to > > concentrated on how > > llvm is build, then on this particular patch. I've done the changes > > you have > > suggested and it's now a lot nicer and
2019 Feb 06
1
Mount AD home directory and login on Ubuntu Workstations
...template homedir = /home/%D/%U template shell = /bin/bash vfs objects = acl_xattr map acl inherit = Yes store dos attributes = Yes [Studenti] path = /srv/samba/studenti/ read only = no [Docenti] path = /srv/samba/docenti/ read only = no [Classi] path = /srv/samba/classi/ read only = no [Varie] path = /srv/samba/varie/ read only = no [Admins] path = /srv/samba/admins/ read only = no ###############################################################
2005 Jan 09
1
S4 class no longer accepts matrix in array slot under 2.0.1
...mensional arrays in the slot. The following (in 2.0.1) illustrates the point: > setClass("foo",representation("array")) [1] "foo" > a <- new("foo",array(NA,2:4)) > b <- new("foo",matrix(NA,2,3)) Error in "as<-"(`*tmp*`, Classi, value = c(NA, NA, NA, NA, NA, NA)) : No method or default for as() replacement of "foo" with Class="matrix" This last error did not occur under 1.9.1. I conclude that in this context the methods package does not recognise "matrix" as a subclass of "arra...
2005 Jan 13
1
(no subject)
Good morning, I wrote a little code in R which has to show two graphs but I can get only one. How can I adress the graphs in two files? Second, I'd like, always in the same code, to add a legend to a graph. Better, I'd like to put in such a legend a new item whose color could remind the colour ol the columns it refers to in the plot. I wrote: leg.txt<-c("control
2004 Mar 30
1
classification with nnet: handling unequal class sizes
I hope this question is adequate for this list I use the nnet code from V&R p. 348: The very nice and general function CVnn2() to choose the number of hidden units and the amount of weight decay by an inner cross-validation- with a slight modification to use it for classification (see below). My data has 2 classes with unequal size: 45 observations for classI and 116 obs. for classII With CVnn2 I get the following confusion matrix (%) (average of 10 runs): predicted true 53 47 16 84 I had a similar biased confusion matrix with randomForest until I used the sam...
2008 Apr 21
4
prod(0, 1:1000) ; 0 * Inf etc
I think most of us would expect prod(0:1000) to return 0, and ... ... it does. However, many of us also expect prod(x1, x2) to be equivalent to prod(c(x1,x2)) the same as we can expect that for min(), max(), sum() and such members of the "Summary" group. Consequently, prod(0, 1:1000) should also return 0, but as you see, it gives NaN which may be a bit puzzling... The
2008 Jan 25
1
Join me on Last.fm!
Hi asterisk-users at lists.digium.com, Add me as a friend on Last.fm so we can share our music taste :)? Check out what I'm listening to: http://www.last.fm/user/shina01/?invitedby=shina01&tp=ff_tp_b -------- I also sent you a personal note: "boo!" Signing up is free and takes less than a minute. Just click the link to automatically become my friend.
2008 Jul 21
0
perl module to parse httpd log on C5
hello, Looking for alternative ideas to parse the combined Apache log: /var/log/httpd/access_log (is how I named it) What I've tried so far is a CPAN search, which pointed me to a recently created module called ApacheLog::Parser >From the C5 shell, I used something like this (heavily refined from how I started) ---------- sh script --------- #rpm --import
2011 Dec 30
0
[LMDE] Warcraft tft fps drop
...n amazing drop of fps when I play. Usually i have 90 fps, but now it drops to 25 fps (since installed LMDE with gnome3). The thing is that i've added the key for opengl configuration, but the problem is my gui, i'm using gnome3, the default one that comes with lmde, before i had gnome3 but classis with no effects, but i don't want it. So i need a solution to have more fps with the same gui because it does not enter into my brain how, having the computer i have, it goes so slowly?. This shouldn't happen. I have the following config: AMD x2 5000 3gb ram geForce 9500gt (private drive...
2007 Jun 20
0
http://www.replica-watch-source.com
Huge Selection Replica Supplier offers a huge in stock selection of Swiss-made fake Rolex Replicas! They are as close to the original as the can get, at a fraction of the cost. -------------------------------------------------------------------------------- 2006 Models Available! All 2006-2007 Upgrade Swiss-made Rolex replica watches are in stock!
2006 Aug 23
0
idea for an effect
Hey compiz folks, I had some ideas for effects that might help us cause more paroxysms of jealousy in non-compiz users: It would be great if when you close a window, there were a number of options to specify how the window dissappears: 1. fade to transparent (simple and classy!) 2. crack like glass into several pieces and fall off the screen in interesting ways. 3. fly off the screen in a 3d
2008 Apr 28
3
[LLVMdev] ParamAttr Patch - Alignment fix
On Sunday 27 April 2008 01:33:31 Gordon Henriksen wrote: > On Apr 26, 2008, at 19:09, Anders Johnsen wrote: > > On Sunday 27 April 2008 00:48:00 Gordon Henriksen wrote: > >> On Apr 26, 2008, at 17:41, Anders Johnsen wrote: > >>> +void LLVMSetInstrParamAlignment(LLVMValueRef Instr, unsigned index, > >>> unsigned align) { > >>> + CallSite Call =