Displaying 20 results from an estimated 377 matches for "ione".
Did you mean:
done
2008 Jul 30
1
model mix problem. FALSE CONVERGENCE
Hi R users
I try to use the lme but I can?t!!!!!
My script is (some words in french, sorry!!):
rm(list=ls(all=TRUE)) #Efface tous les objets en m?moire pour ?viter des
erreurs
library(MASS) #Chargement des Librairies
library(car)
library(Hmisc)
library(tkWidgets)
library(svDialogs)
library(multtest)
library(nlme)
#Rep <- "C:/Documents and Settings/U3M/Bureau/steph/Scripts
2007 Dec 19
4
Factor Madness
Why is class(spectrum[["Ion"]]) after this "factor"?
spectrum <- cbind(spectrum,Ion=rep("",
nrow(spectrum)),Deviation.AMU=rep(0.0, nrow(spectrum)))
slowly going crazy ...
Joh
2012 Jun 07
2
[Bug 50836] New: [bisected] ION fails to probe
https://bugs.freedesktop.org/show_bug.cgi?id=50836
Bug #: 50836
Summary: [bisected] ION fails to probe
Classification: Unclassified
Product: xorg
Version: git
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
AssignedTo: nouveau
2006 Jun 20
2
Problem with "can''t dump anonymous class Class"
I submitted this earlier, but the web forums went down and I''ve screwed up
the thread, so I''m starting over.
I''m trying to built a document upload system. The system has a main
Document model with different subclasses for different types of documents.
With the code below, if I attempt to create a Document, it works fine, but
if I attempt to use one of the subclasses, I
2010 Jan 13
28
New ZFS Intent Log (ZIL) device available - Beta program now open!
The DDRdrive X1 OpenSolaris device driver is now complete,
please join us in our first-ever ZFS Intent Log (ZIL) beta test
program. A select number of X1s are available for loan,
preferred candidates would have a validation background
and/or a true passion for torturing new hardware/driver :-)
We are singularly focused on the ZIL device market, so a test
environment bound by synchronous writes
2012 Feb 07
4
[Bug 45746] New: ION (NVAC) does not work with latest git kernel module
https://bugs.freedesktop.org/show_bug.cgi?id=45746
Bug #: 45746
Summary: ION (NVAC) does not work with latest git kernel module
Classification: Unclassified
Product: xorg
Version: git
Platform: Other
OS/Version: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
2009 Feb 04
5
Target Plot?
I've done a little snooping around the R Gallery Site (http://addictedtor.free.fr/graphiques/) and the "Statistics with R" site (http://zoonek2.free.fr/UNIX/48_R/all.html), but I can't seem to find what I'm looking for.
Here is the type of plot I would like to draw:
(1) 2-D three axis plot where each axis is separated by 120-degrees (would be great if the number of axis
2008 Jan 28
2
Dovecot/SeLinux issues after RHEL5.1 upgrade
Hello to everyone on the list,
I have upgraded my RHEL4 to RHEL5.1 yesterday (all updates have been applied to it as well). I used to have dovecot v0.99.11 on the old system. Everything was working fine. Now I have 5.1 and its respective dovecot v1.0.rc15.
Upon upgrading to RHEL5.1, dovecot no longer works correctly. The first thing I did after rewriting the config file for the updated version,
2017 Jul 14
3
[Bug 101792] New: nouveau driver doesn't work in kms mode with ION GPU
https://bugs.freedesktop.org/show_bug.cgi?id=101792
Bug ID: 101792
Summary: nouveau driver doesn't work in kms mode with ION GPU
Product: xorg
Version: unspecified
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee:
2005 May 05
2
Numerical Derivative / Numerical Differentiation of unkno wn funct ion
Ah... I searched for half an hour for this function... you know, the help function in R could really be a lot better...
But wait a minute... looking at this, it appears you have to pass in an expression. What if it is an unknown function, where you only have a handle to the function, but you cannot see it's implementation ? Will this work then ?
-----Original Message-----
From: Berton Gunter
2006 Feb 16
0
using kernel density estimates to infer mode of distribut ion
This might be of interest:
http://math.usu.edu/~minnotte/research/software/modetree.r
(I was not able to get to the link, but google has a cached version.)
Prof. Marron's SiZer maps may also be of interest, but AFAIK the code is in
Matlab only.
Andy
From: Dan Rabosky
>
>
> Hello...
>
> Is it possible to use "density" or another kernel density
> estimator to
2008 Mar 02
1
About R-Project
Hello,
My name is Ion Andronache and I am a candidate for a doctor's degree on
geomorphology in Braila, Romania. I would like to ask for some advice. I
would like to make an analysis on the Danube's flow capacity and to
determine the circles and periodicity using the Schuster system. I
understood that your soft can do these operations but I don't know how.
Would you be so kind to
2006 Mar 22
0
RE: VoiceMailMain(@context) Problem with Opt ion 5 (Advanced)
I apologize, but the fix I was thinking of wasn't directly related to this.
It was in app_voicemail.c, but related to using the channel's context for
the Directory application. The fix for your issue may be indirectly
related, though. I would open a bug.
Regards,
- Brad
-----Original Message-----
From: asterisk-users-bounces@lists.digium.com
2003 Jul 23
1
Newbie Help
Hi - after hearing others rave about * I thought I'd have a go - extract
from a 'make' on a stock debian system as follows... (I tried to post the
whole make up to this point but it was too big for the list)
make[1]: Leaving directory `/usr/src/asterisk/channels'
make[1]: Entering directory `/usr/src/asterisk/pbx'
gcc -pipe -Wall -Wstrict-prototypes -Wmissing-prototypes
2006 Jun 19
3
can''t dump anonymous class Class
I''m trying to create a document upload system, where most of the code is
the super class Document and just the path to file on the system is
controlled by the sub classes. When I attempt to use my code, I get the
following when I try to save the document.
can''t dump anonymous class Class
Any ideas?
** Migration **
class CreateDocuments < ActiveRecord::Migration
def
2009 Jun 17
2
validates_uniqueness_of fails on STI in Rails 2.3.2
I''ve got something like this:
class Position < ActiveRecord::Base
end
class CartItem < Position
validates_uniqueness_of :product_id
end
When I try to save CartItem I get this error:
ArgumentError: wrong number of arguments (1 for 2)
from
/home/joaz/.gem/ruby/1.8/gems/activerecord-2.3.2/lib/active_record/validations.rb:758:in
`exists?''
from
2005 Oct 06
1
blank graphics window while R is working
Dear R-help,
When R starts to execute some code, all the graphics windows
associated with that R session go blank, and remain blank until the R
prompt returns.
I am using the "ion" window manager
(http://modeemi.cs.tut.fi/~tuomov/ion/) under Debian linux.
I notice that under the gnome desktop environment with Fedora Core 4
linux, the graphics windows retain their images while R
2009 Dec 11
12
Literature analysis
Dear all,
i am new in R. I am writing a review paper about batteries. However, i
am interested in analyzing all the papers by keywords, author,
references and year.
This could be done by "refviz" a software, which is only running on
windows machines and which is not free.
So my question to you is, is it somehow possible to write a script that
can do all of this work?
And if yes, with
2005 Aug 10
3
Hitachi wip5000
Hi all,
Saw on the net the wip5000 SIP wireless phone from Hitachi, a suprising rig.
As anyone successfull in making it work with Asterisk?
If so, how do you like it?
Regards,
Francois
Random Thought:
---------------
Molecule, n.:
The ultimate, indivisible unit of matter. It is distinguished
from the corpuscle, also the ultimate, indivisible unit of matter, by a
closer resemblance to
2005 Jul 25
0
Fw: /bin/sh: build_tools/make_version_h: not found
...;
> > >that
> > >
> > >
> > >>>he tweaked the makefile and/or the code to get these working. he is
not
> > >>>rplying to my mail.
> > >>>
> > >>>
> > >>He didn't write what he changed. He only mentioned that he changed it.
> > >>
> > >>
> > >>
> > >>>i'm still not able to install asterisk on solaris because of this
> error
> > >>>
> > >>>
> > >>>
> > >>>
> >
>
>gcc -p...