Displaying 20 results from an estimated 20000 matches similar to: "terminology for frames and environments"
2004 Dec 28
1
win variable in tcltk
The following gives an error message:
library(tcltk)
win <- list(env="A")
tt <- tktoplevel()
but <- tkbutton(tt, text="X", command=expression(tkdestroy(tt)))
tkgrid(but)
however, if one comments out the win line (and removes the
win variable) then it works. It seems that tcltk is making
use of a variable called win with a component name of env
and I just happened
2003 Nov 06
3
import data troubles
HI R lovers,
I have been facing a petty trouble with datas' import :
I have a plain txt file (see attached file or the copy below) that I cannot
read either with scan or read.table
> scan(file="F:/Alt/HDG/Stoliaroff/Data/test.txt")
Error in scan(file = "F:/Alt/HDG/Stoliaroff/Data/test.txt") :
"scan" expected a real, got "??6"
>
2005 Jul 28
2
[LLVMdev] help with pointer-to-array conversion
I now understand that IndVarSimplify.cpp is capable of reproducing array
references when the pointer initialization from the array address is found
inside the immediately enclosing loop, such that in the following code:
int A[20000], B[100], Z;
int main()
{
int i, j, *a, *b;
for ( a = &A[0], i = 0; i != 200; i++ )
for ( b = &B[0], j = 0; j != 100; j++
2003 Jun 12
1
Problème en R
Bonjour,
Je suis ?tudiant stagiaire ? Paris et je rencontre quelques difficult?s en
programmation R.
J'ai une data frame compos?e de 4 colonnes et 250 lignes et dont chaque
ligne est une famille.
J'ai fait un tirage al?atoire avec remise des familles 250 fois ce qui
m'am?ne ? une nouvelle dataframe.
A cette nouvelle dataframe, j'applique un programme qui calcule 2 param?tre
X1
2004 Dec 19
1
value of a loop broken by break
Should the 'for' loop in the following example not return 3 rather than 2?
The Language Manual says that it returns the result of the last evaluated
statement and that would be the i before the 'break'. 'repeat' and 'while'
have the same behavior.
R> (for(i in 1:10) if (i==3) { i; break } else i)
[1] 2
R> R.version.string # Windows XP
[1] "R version
2012 Aug 26
4
error type
Hi,
I am trying plot a grafic but generates an error:
Erro em plot.default(xlim, ylim, type = "n", ann = FALSE, axes = FALSE, : argumento formal "type" corresponde a múltiplos argumentos especificados
DATA:
44 40 39 38 0 7 7 1030 57 37 5146 40 41 4737 34 36 2636 28 33 3738 26 28 2742 38 36 3636 27 22 2853 43 33 40
plot(dados[1],type="o",pch=21,
2007 Jun 16
1
exemple html
Bonjour, je voudrait savoir si il est possible d''aller chercher des flux rss et d''affiché les pages web avec l''exemple que vous donnez dans wxruby2: ''html'', car je cherche une bibliothèque ou autre qui puisse me permettre de faire celà.
merci
Sebastien
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
2008 Dec 10
2
[LLVMdev] dyn_cast really doesn't like multiple inheritance
Been having a bit of a problem with dyn_cast: Suppose I have a class A
that inherits from two base classes, both of which support dyn_cast. In
order to use dyn_cast on A, I need to do a bunch of extra work:
1) Since dyn_cast uses reinterpret_cast rather than static_cast, the
pointer value won't get adjusted by the cast operation, making the
pointer invalid. I end up having to redefine
2011 Nov 02
2
Creating barplot using time as X
Hello all,
my data looks like this:
"phaseno" / "activity" / "beg" / "end" / "phasetime"
1 / "L" / 2010-06-03 19:15:24 / 2010-06-03 21:18:14 / 7370
2 / "D" / 2010-06-03 21:18:15 / 2010-06-03 21:19:55 / 100
3 / "W" / 2010-06-03 21:19:56 / 2010-06-03 21:22:47 / 171
4 / "D" / 2010-06-03 21:22:48 / 2010-06-03
2011 Jan 12
1
snowfall
Hello,
Just wondering why I am unable to run this in parallel.
A dput of my dataset is attached at the end. Please use to create my data
object.
I want to run this function in parallel (not sure if this is an efficient
implementation):
#Function to calculate the time to maturity for the option
require(fCalendar,quietly=TRUE) #Trying to calculate the trading days
2012 Jan 21
4
why doesn't an instance of Object get Class's new instance method?
"Object is the root of Ruby''s class hierarchy. Its methods are
available to all classes unless explicitly overridden."
Wouldn''t Class class be at the root of the class hierarchy?
After all, look at this:
1.9.2p290 :006 > Object.instance_of? Class
=> true
Object is an instance of class, after all we can use one of Class''
instance methods on Object:
2009 Jun 04
1
problem install Asterisk-FastAGI
Hello all,
I have a problem when I try to install FastAGI.
I try to do
#perl Makefile.PEL
And it return :
Can't locate inc/Module/Install.pm in @INC (@INC contains: /etc/perl
/usr/local/lib/perl/5.8.8 /usr/local/share/perl/5.8.8 /usr/lib/perl5
/usr/share/perl5 /usr/lib/perl/5.8 /usr/share/perl/5.8
/usr/local/lib/site_perl .) at Makefile.PL line 1.
BEGIN failed--compilation aborted
2007 Mar 02
2
Terminology merging
Hello everyone,
I''ve been working on an internal best practices document that also tackled
giving proper terms to things that were at the time uncoined. But looks
like we have a bit of a merge problem as other terms have been floating
around that seem to conflict with some terms we''ve been using internally at
my organization. I''m hoping we can discuss and
2004 Dec 02
2
regex to match word boundaries
Can someone verify whether or not this is a bug.
When I substitute all occurrence of "\\B" with "X"
R seems to correctly place an X at all non-word boundaries
(whether or not I specify perl) but "\\b" does not seem to
act on all complement positions:
> gsub("\\b", "X", "abc def") # nothing done
[1] "abc def"
>
2010 Mar 04
6
help
Hi all ,
I have one query.
i have list of some .cel files. in my program i have to mention the path of
these .cel files
part of my program is,
rna.data<-exprs(justRMA(filenames=file.names, celfile.path=*datadir*,
sampleNames=sample.names, phenoData=pheno.data,
cdfname=cleancdfname(hg18_Affymetrix U133A)))
in the place of "datadir" i have to mention the character string of the
2008 Mar 12
4
[Bug 14970] New: dma queue hang on 7800 GTX
http://bugs.freedesktop.org/show_bug.cgi?id=14970
Summary: dma queue hang on 7800 GTX
Product: xorg
Version: 7.3
Platform: x86-64 (AMD64)
OS/Version: Linux (All)
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau at lists.freedesktop.org
ReportedBy:
2008 May 05
3
Plugin for displaying Java Code with Syntax Highlighting in a RoR website?
Hello folks,
I only want to display (not execute) java code on a java tutorial
website coded in RoR. Is there any plugin or method how i can display
the java code with syntax highlighting on a RoR html site?
--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group.
To post to this group,
2006 Mar 30
5
Patch for wxControl.h
Hello all. This gets past the problem in bigdemo where it won''t start
the application at all. That was where it was overflowing the stack on
get_label.
Roy
_______________________________________________
wxruby-users mailing list
wxruby-users@rubyforge.org
http://rubyforge.org/mailman/listinfo/wxruby-users
2004 Mar 02
1
VP3 Format Doc, v0.4
Hi,
Check it out-- another update in the space of a week:
http://home.pcisys.net/~melanson/codecs/vp3-format.txt
v0.4: March 2, 2004
- renamed and expanded section "Initializing The Quantization Matrices"
- outlined section "Reconstructing The Frame"
- moved Theora Differences Appendix to its own section entitled "Theora
Specification"
- added Appendix:
2007 Dec 04
37
Can`t connect to MySQL Database with Netbeans 6 for RoR ?
Hello,
I am just yes fighting is the right word through the Netbeans 6.0 for
RoR guidance:
[quote]1.gem install mysql
2.Choose the win32 build.
3.Install MySQL and put its /bin directory on your path.[/quote]
did the first 2 steps but what means step 3 ???
Your path? What is my path and which path?
The connection to the MySQL database is also not working, why? what do
i wrong? Please help :)