Displaying 20 results from an estimated 33 matches for "donnees".
2007 Aug 27
4
Problem with save or/and if (I think but maybe not ...)
...with
Tinn-R) ?
I thank you in advance for your help.
Have a nice week,
Ptit Bleu.
PS : Ptit Bleu means something like "Full Newbye" in french. So thanks to be
patient :-)
PPS : I hope you understand my french english
------------------------------------------
# Connexion a la base de donnees database de MySQL
library(DBI)
library(RMySQL)
drv<-dbDriver("MySQL")
con<-dbConnect(drv, username="user", password="password", dbname="database",
host="localhost")
# Creation des objets contenant la liste des fichiers (rel pour chemin
rela...
2004 Jan 18
1
multcomp, simint, simtest and computation duration
Dear R-listers,
I am trying to compute simultaneous confidence intervals with simint from the package multcomp. 230 measures (abundance) have been taken in 23 sites (factor) of a data.frame (donnees: a file can be sent on request, saved with save(donnees,file="donnees")). I would like to get all pairwise comparisons with :
mc<- simint(ren~ID,type="Tukey",data=donnees)
I cannot get a result in a reasonable time (after 2 hours the computer was still working and I interru...
2007 Nov 16
2
ks.test
Hello,
I want to do normality test on my data
I write this but I don't understand the display of the results
ks.test(data,"pnorm")
In fact I want to know if my data is a normal distribution. I have to check the p-value or D?
Thanks.
_____________________________________________________________________________
l
[[alternative HTML version deleted]]
2009 Oct 21
2
linear regression: Is there a way to get the results of lm as variables
Hi R users
I used R to get the results of a linear regression
reg<-lm(y~x)
here are the results:
# Call:
# lm(formula = donnees$txi7098 ~ donnees$txs7098)
#
# Residuals:
# Min 1Q Median 3Q Max
# -0.037971 -0.013373 -0.004947 0.01...
2007 Aug 27
0
how to write nicely a condition on a loop "for" (that is, not like I did)
...hiers<-nfichiers[grep(".P0",
nfichiers)]} #look if there is .P0
if (p0fichiers[1]>"0") # if .P0 has been updated
with the test above
{
for (i in 1:length(p0fichiers)) # do the loop "for"
{
donnees<-read.table(p0fichiers[i], quote="\"", sep=";",
dec=",", skip=18)
jourheure<-paste(donnees$V1, donnees$V2, sep=" ")
donnees[1]<-jourheure
donnees<-donnees[,-2]
rm(donnees, jourheure)...
2007 Sep 17
4
Must be easy, but haven't found the function (numerical integration)
Hi,
I have a data frame of 2 columns with the following types :
data$day char
data$value num
And I plot my data with :
plot(strptime(donnees$day,format="%Y-%m-%d %H:%M:%S"),donnees$value,
type="l")
And I'd just like to get the numerical value of the integration of this
graph.
I looked at ?integrate but, as far as I understood (that is, not very much,
due to my poor english), it seems that it doesn't work wit...
2007 Apr 27
1
add arrows to barchart with groups
Hello Rhelpers,
I am trying to represent the following data (hereafter named donnees) in a barchart with a grouping variable :
site traitement date s res
1 NT 17/10/2005 normal 76.2
1 T 17/10/2005 normal 103.2
1 NT 23/11/2005 tardif 81.6
1 T 23/11/2005 tardif 98
2 NT 15/10/2005 normal 72.71
2 T 15/10/2005 normal 94.47
2 NT 15/11/2005 tardif 79.65
2 T 15/11/2005 tardif 94.7
barch...
2011 May 05
7
Draw a nomogram after glm
Hi all R users
I did a logistic regression with my binary variable Y (0/1) and 2
explanatory variables.
Now I try to draw my nomogram with predictive value. I visited the help of R
but I have problem to understand well the example. When I use glm fonction,
I have a problem, thus I use lrm. My code is:
modele<-lrm(Y~L+P,data=donnee)
fun<- function(x) plogis(x-modele$coef[1]+modele$coef[2])
2010 Mar 27
0
Error lm.fit(...) - pairs cointegrated trading
Hello guys,
I'm trying to do a pairs trading cointegration analysis on two stocks (AXAP
and AXANY), but I get an error that I don't understand...
Here's my code:
setwd("S:/Users/Alexis/Desktop/Essai") #chemin du dossier contenant les
donn?es
donnees <- read.csv("Data_R.csv", head=T, sep=";", stringsAsFactors=F)
library(xts)
dates <- as.Date(donnees[,1], format="%Y-%m-%d")
AXAP <- xts(donnees[,4], dates)
AXANY <- xts(donnees[,5], dates)
t.xts <- merge(AXAP, AXANY, all=FALSE)
t <- as.data.frame(t.x...
2006 Aug 18
0
roaming profile unusable after smb ports = 139
...ba/profiles
valid users = %U, "@Domain Admins"
force user = %U
read only = No
create mask = 0600
directory mask = 0700
guest ok = Yes
profile acls = Yes
browseable = No
csc policy = disable
[donnee]
comment = Donnees
path = /data/donnee
read only = No
[system]
path = /data/system
read only = No
[cdrom]
comment = CD-ROM economie suisse
path = /media/cdrom
[Novell Services Vol1]
path = /mnt/noveltest
[Novell Services Sys]
path = /mnt/novelsys
[N...
2005 Aug 08
1
get the wald chi square in binary logistic regression
...on. In fact, i have the z
value and the signification but is there a script to see what is the value of
Wald chi square. You can see my model below,
Best regards,
S??verine Erhel
[Previously saved workspace restored]
> m3 = glm(reponse2 ~ form + factor(critere2) ,family=binomial,data=mes.donnees)
> summary (m3)
Call:
glm(formula = reponse2 ~ form + factor(critere2), family = binomial,
data = mes.donnees)
Deviance Residuals:
Min 1Q Median 3Q Max
-2.5402 0.2064 0.3354 0.4833 1.4177
Coefficients:
Estimate Std. Error z value Pr...
2010 Jul 22
2
how to write legend of a plot
Dear R Users,
If we issue simple plot command in R we don't get legend of the plot
automatically.
For example, following lines plots two curves, but to write a legend of
these two curves there is no simple command. I checked with ?legend but
it seems bit complicated for me. Does anyone know how to get a legend in a
simple way for following R plot.
Thanks, Yogesh
>plot (x,y,
2006 Aug 24
0
strange kind of sharing violation disappearing with socket options
...ba/profiles
valid users = %U, "@Domain Admins"
force user = %U
read only = No
create mask = 0600
directory mask = 0700
guest ok = Yes
profile acls = Yes
browseable = No
csc policy = disable
[donnee]
comment = Donnees
path = /data/donnee
read only = No
regards.
--
Network & System Engineer
Goelaan SA, Switzerland
Tel. +41-22-960 98 20
Fax +41-22-960 98 21
http://www.goelaan.ch
2005 Oct 20
3
problème d'import de fichier
hello!
je veux importer un fichier de donnees excel que j'ai au prealable
converti en fichier txt avec separateurs tab, fichier de la forme entree
simple (suite de colonnes contenant des variables).
Voila ma ligne de commande :
> poussins <- read.table("poussins.txt", header=T, sep="\t")
et sa reponse
Erreur d...
2009 Nov 22
1
Portec - feedback wanted
I am thinking of buying a Portec MV370 (single channel VoIP/GSM gateway)
I am after feedback reports both good and otherwise please.
Thanks,
Michael
2005 Nov 02
1
nlminb failed to converge with lmer
Dear all,
I'm building binomial mixed-model using lme4 package.
I'm able to obtain outputs properly except when I include two particular
variables: date (from 23 to 34; 1 being to first sampling day) and Latitude
(UTM/100 000, from 55.42 to 56.53). No "NA" is any of those variables.
In those cases, I get the warning message: "nlminb failed to converge"
I tried to
2005 Nov 13
0
Julien Ruiz est absent.
...on my return.
Julien Ruiz
----------------
L'acces immediat aux meilleurs tarifs Air France et au billet electronique
sur http://www.airfrance.com
For immediate access to the best Air France fares and to electronic
tickets, visit our website http://www.airfrance.com
----------------
Les donnees et renseignements contenus dans ce message sont personnels,
confidentiels et secrets. Ce message est adresse a l'individu ou l'entite
dont les coordonnees figurent ci-dessus. Si vous n'etes pas le bon
destinataire, nous vous demandons de ne pas lire, copier, utiliser ou
divulguer cette...
2007 Aug 29
1
How to let the program know the end of a file is reached?
Dear collegues.
I am using scan( ) to read from a table (a csv file).
I am wondering how to let the program know that the end of the file is
reached?
Your help will be highly appreciated!
Best Wishes
Yuchen Luo
[[alternative HTML version deleted]]
2007 Jun 09
2
psf files
...orders of the
menu.
So... two questions :
Does a font with "french" letters and graphicals caracters used by
menu
still exist ?
Is there a simple software for editing psf.files ?
( so I can make exactly what I need ...)
Thank,
HB
---
Antivirus avast! : message Sortant sain.
Base de donnees virale (VPS) : 000748-2, 09/06/2007
Analyse le : 09/06/2007 23:30:41
avast! - copyright (c) 1988-2007 ALWIL Software.
http://www.avast.com
2002 May 22
1
(no subject)
...prototype file.
## Processing pkginfo file.
pkgmk: ERROR: parameter <VERSION> cannot be null
## Packaging was not successful.
pkgtrans: ERROR: unable to complete package transfer
- no packages were selected from </tmp/source/openssh-3.1p1/contrib/solaris>
----------------
Les donnees et renseignements contenus dans ce message sont personnels, confidentiels et secrets. Ce message est adresse a l'individu ou l'entite dont les coordonnees figurent ci-dessus. Si vous n'etes pas le bon destinataire, nous vous demandons de ne pas lire, copier, utiliser ou divulguer cette...