Displaying 20 results from an estimated 34 matches for "showal".
Did you mean:
shoval
2009 Sep 17
1
package documentation of S4 methods
...to R-programming so if the question is stupid I apologize.
I have to create a package, which includes an S4-class called "BList". For objects of this class I implemented a method "show", which displays the first 15 data-lines of the object. I further implemented a method "showall", which displays the whole data in the object. For the "showall"-method i first defined a generic method:
setGeneric("showall",
function(object){
out<- standardGeneric("showall")
})
and then defined the method using
setMethod("showall"...
2007 Jul 26
0
6 commits - libswfdec/swfdec_initialize.as libswfdec/swfdec_initialize.h libswfdec/swfdec_player.c libswfdec/swfdec_player_internal.h libswfdec/swfdec_stage_as.c test/trace
...x 0000000..45166c4
Binary files /dev/null and b/test/trace/scalemode-5.swf differ
diff --git a/test/trace/scalemode-5.swf.trace b/test/trace/scalemode-5.swf.trace
new file mode 100644
index 0000000..f9f029b
--- /dev/null
+++ b/test/trace/scalemode-5.swf.trace
@@ -0,0 +1,27 @@
+test Stage.scaleMode
+showAll
+noborder ==> noBorder
+noBorder ==> noBorder
+NOBORDER ==> noBorder
+exactfit ==> exactFit
+exactFit ==> exactFit
+EXACTFIT ==> exactFit
+showall ==> showAll
+showAll ==> showAll
+SHOWALL ==> showAll
+noscale ==> noScale
+noScale ==> noScale
+NOSCALE ==> noScal...
2007 Nov 14
2
redhat package management provider
Hi Luc,
do you know if Ticket #743 will be solved in the next release ?
it''s a trivial change of command line option in the provider from
--show-available to --showall, --show-available does not list installed
packages so you cannot upgrade a package ( if allready installed and a
new version comes the provider will not see it rendering the ensure=>
latest useless). It could be important for redhat users as they will
miss any upgrade of a package even if...
2007 May 30
6
up2date
.../1.8/puppet/provider/package/up2date.rb", I found
that it''s calling "/usr/sbin/up2date-nox --show-available", but the
--show-available option doesn''t list package updates for packages that
are already installed. I think the only option that would work here is
--showall as that will show the latest version of all packages available.
2. I don''t believe the package name matching is quite right. For
example, if you have a package named "gv", it will also match "ggv". I
think this can be fixed by changing:
if output =~ /#{@model[:na...
2017 Oct 22
3
Syntax for fit.contrast (from package gmodels)
...ontrast statement could be written that would give me the point estimate and SE for "general" and it SE without my having to work directly with the variance-covariance matrix. I tried doing this using the fit.contrast statements (from the gmodels package):
fit.contrast(model,type,c(1,0),showall=TRUE)
fit.contrast(model,type,c(0,1),showall=TRUE)
and received the error message,
Error in `[[<-`(`*tmp*`, varname, value = c(0, 1)) :
no such index at level 1
Perhaps fit.contrast is not the way to accomplish my goal. Perhaps my goal can be accomplished without a contrast statement, b...
2017 Oct 22
2
Syntax for fit.contrast
...t; contrasts(data$type)
regional
general 0
regional 1
I have tried the following syntax for fit.contrast
fit.contrast(model,type,c(1,0))
and get an error:
Error in `[[<-`(`*tmp*`, varname, value = cmat) :
no such index at level 1
> fit.contrast(model,type,c(0,1),showall=TRUE)
and get an error:
Error in `[[<-`(`*tmp*`, varname, value = cmat) :
no such index at level 1
> fit.contrast(model,type,c(1,-1),showall=TRUE)
and get an error:
Error in `[[<-`(`*tmp*`, varname, value = cmat) :
no such index at level 1
> fit.contrast(model,type,c(0))
and g...
2017 Oct 22
0
Syntax for fit.contrast
...0
> regional 1
>
>
> I have tried the following syntax for fit.contrast
>
> fit.contrast(model,type,c(1,0))
> and get an error:
> Error in `[[<-`(`*tmp*`, varname, value = cmat) :
> no such index at level 1
>
>
>> fit.contrast(model,type,c(0,1),showall=TRUE)
> and get an error:
> Error in `[[<-`(`*tmp*`, varname, value = cmat) :
> no such index at level 1
>
>
>
>> fit.contrast(model,type,c(1,-1),showall=TRUE)
> and get an error:
> Error in `[[<-`(`*tmp*`, varname, value = cmat) :
> no such index at lev...
2017 Oct 22
0
Syntax for fit.contrast (from package gmodels)
...tween two levels (or more accurately between the means on the scale specified by the link parameter. In the absence of another level the only other reference point would be a value of zero or perhaps the value you specified by your offset term.
--
David
>
> fit.contrast(model,type,c(1,0),showall=TRUE)
> fit.contrast(model,type,c(0,1),showall=TRUE)
>
> and received the error message,
> Error in `[[<-`(`*tmp*`, varname, value = c(0, 1)) :
> no such index at level 1
>
> Perhaps fit.contrast is not the way to accomplish my goal. Perhaps my goal can be accomplishe...
2017 Oct 23
2
Syntax for fit.contrast (from package gmodels)
...between two levels (or more accurately between the means on the scale specified by the link parameter. In the absence of another level the only other reference point would be a value of zero or perhaps the value you specified by your offset term.
--
David
>
> fit.contrast(model,type,c(1,0),showall=TRUE)
> fit.contrast(model,type,c(0,1),showall=TRUE)
>
> and received the error message,
> Error in `[[<-`(`*tmp*`, varname, value = c(0, 1)) :
> no such index at level 1
>
> Perhaps fit.contrast is not the way to accomplish my goal. Perhaps my goal can be accomplished wi...
2009 Jul 02
7
Params Merge and URL sorting/pagination
...olumns
based on controller name called
def sort_column(title, direction)
direction == "asc" ? image = "up.gif" : image = "down.gif"
(link_to image_tag(image, :border=>0, :alt => direction),
:controller => controller.controller_name, :numteams => (@showall ? 120
: nil), :orderby => title, :sortby => direction) if !@searchteams
end
# adds a button to show all teams on tables based on controller name
called.
def show_all_teams
(link_to "Show All Teams", :controller =>
controller.controller_name, :numteams => 120, :orderb...
2017 Oct 23
0
Syntax for fit.contrast (from package gmodels)
...y between the means on the scale specified by the link parameter. In the absence of another level the only other reference point would be a value of zero or perhaps the value you specified by your offset term.
>
> --
> David
>
>
> >
> > fit.contrast(model,type,c(1,0),showall=TRUE)
> > fit.contrast(model,type,c(0,1),showall=TRUE)
> >
> > and received the error message,
> > Error in `[[<-`(`*tmp*`, varname, value = c(0, 1)) :
> > no such index at level 1
> >
> > Perhaps fit.contrast is not the way to accomplish my goal....
2017 Oct 23
1
Syntax for fit.contrast (from package gmodels)
...rately between the means on the scale specified by the link parameter. In the absence of another level the only other reference point would be a value of zero or perhaps the value you specified by your offset term.
>
> --
> David
>
>
> >
> > fit.contrast(model,type,c(1,0),showall=TRUE)
> > fit.contrast(model,type,c(0,1),showall=TRUE)
> >
> > and received the error message,
> > Error in `[[<-`(`*tmp*`, varname, value = c(0, 1)) :
> > no such index at level 1
> >
> > Perhaps fit.contrast is not the way to accomplish my goal. Per...
2011 Oct 21
20
How to transform my html form into a rails 3 form
Hi,
I have the following code working in a rails 3 view, but it is
unfortunately not pure rails code!
<% @filter1 = "tr.show1,tr.show2" %>
<% @filter2 = "tr.show1" %>
<% @filter3 = "tr.show2" %>
<form>
<p>
<input type="checkbox" value=<%=@filter1%> onclick="$
(this).is('':checked'')
2003 Apr 25
1
tcltk tkfilefind demo problem
...the tkfilefind demo. I looked
into the code and it seems to crash executing
dirtree<-tkwidget(base, "hierarchy_dir",
root=path,
showparent="Parent",
showfiles=1,
showall=all.names,
selectmode=if(multiple) "multiple" else "browse")
with the following error message
Error in structure(.External("dotTcl", ..., PACKAGE = "tcltk"), class
= "tclObj") :
[tcl] megawidget initialization er...
2004 Feb 19
1
Process R segmentation with strsplit() (PR#6601)
...lt;/H3>\n<FORM METHOD=\"POST\">\n<INPUT TYPE=\"hidden\" NAME=\"file\" VALUE=\"../data/20040219/F253567.dat\">\n<INPUT TYPE=\"hidden\" NAME=\"hit\" VALUE=\"1\">\n<INPUT TYPE=\"hidden\" NAME=\"showall\" VALUE=\"true\">\n<INPUT TYPE=\"hidden\" NAME=\"protscore\" VALUE=\"0\">\n<FONT FACE='Courier New,Courier,monospace'><PRE>Match to: <B>At1g61780</B>; Score: <B>15</B>\n<B>hypothetical protein&l...
2012 May 28
1
Disk geometry problem.
...llen
Home page is http://smartmontools.sourceforge.net/
=== START OF INFORMATION SECTION ===
Device Model: INTEL SSDSA2CW120G3
Serial Number: CVPR13010957120LGN
Firmware Version: 4PC10362
User Capacity: 120,034,123,776 bytes
Device is: Not in smartctl database [for details use: -P showall]
ATA Version is: 8
ATA Standard is: ATA-8-ACS revision 4
Local Time is: Mon May 28 13:12:18 2012 CEST
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
smartctl -i /dev/sdd
smartctl version 5.38 [x86_64-redhat-linux-gnu] Copyright (C) 2002-8 Bruce
Allen
Ho...
2007 Jun 19
9
Is HP server hardware incompatible with Xen?
Hi,
We''ve been using xen with pc clones for some time now.
But now the boss wants to get serious and start using real servers.
We''ve been looking at HP.
I got in touch with a couple of distributors for prices and much to my
suprise, I''ve been told by one HP Partner that Xen does not run on HP
hardware. (a ProLiant ML 150)
He continued to tell me that he could offer me
2005 Apr 21
0
Fwd: Re: [smartmontools-support]cannot tell if I have a controller or disk problem
...or
> > ide-controller. Let's take a closer look.
> >
> >
> > > smartctl -a /dev/hda reports:
> > > Serial Number: 01043113
> > > Firmware Version: B015
> > > Device is: Not in smartctl database [for
> > > details use: -P showall]
> > > ATA Version is: 4
> >
> > ATA version 4 is pretty old.
> > Also notice the not in smartctl database line.
> > Are you using the latest version of smartmontools
> ?
> >
> > > 9 Power_On_Hours 0x0012 001 001
> > 02...
2007 Dec 09
0
smartctl fails after update to 5.1
...Bruce
Allen
Home page is http://smartmontools.sourceforge.net/
=== START OF INFORMATION SECTION ===
Device Model: HDS728080PLA380
Serial Number: XXXXXXXXXXXXXXXX
Firmware Version: PF2OA69A
User Capacity: 82.348.277.760 bytes
Device is: Not in smartctl database [for details use: -P showall]
ATA Version is: 7
ATA Standard is: ATA/ATAPI-7 T13 1532D revision 1
Local Time is: Sun Dec 9 12:41:14 2007 CET
SMART support is: Available - device has SMART capability.
SMART support is: Enabled
Error SMART Status command failed
Please get assistance from http://smartmontools.sourceforge...