Displaying 20 results from an estimated 21 matches for "essafi".
Did you mean:
essa
2010 Aug 21
4
basic hist() question
Hi list
I loaded the content of a file dureetasks.txt to variable a. This file
contains an interger per line.
when I print a vector, it displays correctly.
however, when I try to print the histogram, I get this error message
> a=read.table("dureetasks.txt")
> hist(a)
Error in hist.default(a) : 'x' must be numeric
Can you help please?
regards
--
PhD candidate in
2012 Dec 04
3
monte carlo simulation on R
Hello,
How can I make a monte carlo simulation on R?
Regards
Adel
--
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
fax: +216 71 391 166
[[alternative HTML version deleted]]
2012 Jan 27
3
generate a random number with rexp ?
dear list
I use runif to generate a ramdom number between min and max
runif(n, min=0, max=1)
however , the syntaxe of rexp does not allow that
rexp(n, rate = 1)
and it generate a number with the corresponding rate.
The question is: how to generate a number between min and max using rexp().
Regards
--
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
2011 Sep 24
2
two ecdf in the same figure
Hello,
is ot possible to draw two ecdf of vectors (say s1 and s2) on the same
figire with R.
plot function draws a new plot and there is no function like points or lines
to draw a second ecdf on the figure.
Regards
--
*PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706
fax: +216 71 391 166*
[[alternative HTML version deleted]]
2012 Feb 18
2
transforming a data frame to matrix
Hello
> orderulcount
Group.1 Group.2 Group.3 x V5
7 C L 0.0 30 C / L
19 C L 0.2 27 C / L
31 C L 0.4 15 C / L
43 C L 0.6 7 C / L
54 C L 0.8 2 C / L
10 C S 0.0 27 C / S
22 C S 0.2 10 C / S
34 C S 0.4 6 C / S
46 C S 0.6 1 C / S
1 D
2010 Jun 05
1
variation
Hi list
I am a new user of R. I ask for some "beginner" question
I am searching if there is any function that computes the variation of some
discrete values of a vector (mean() and sd() exists, but i have not find
variation).
Thanks in advance
Adel
--
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706 (+33640302046
2011 Jan 19
1
printing big real values
Hello,
I have a file with very big values. I want to display the real values with
classic ways (without exposant)
> summary(a[,1]);
Min. 1st Qu. Median Mean 3rd Qu. Max.
1.198e+09 1.199e+09 1.200e+09 1.200e+09 1.201e+09 1.202e+09
Can you help please?
Regards
Adel
--
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel:
2011 Sep 14
1
draw points in R
Hello list
I have this file
0 121289479 25
0 212599129 1
0 285254098 21
0 444889848 45
0 469197123 30
0 640007403 82
0 718215617 8
0 758534043 56
0 799706577 4
0 814441385 93
0 843545059 37
0.2 121289479 6
0.2 285254098 3
0.2 444889848 6
0.2 469197123 13
0.2 640007403 24
0.2 718215617 3
0.2 758534043 2
0.2 799706577 2
0.2
2004 Feb 13
1
how to add a space to a partition
hi list
My partion that contains linux is full.
I have an empty patition on my disk. is it possible to add this space to my linux partition and how?.
thanks
---------------------------------
Yahoo! Mail : votre e-mail personnel et gratuit qui vous suit partout !
Créez votre Yahoo! Mail
--0-1240974796-1076685510=:31136
Content-Type: text/html; charset=iso-8859-1
Content-Transfer-Encoding: 8bit
2011 Dec 13
1
generate a number using exponential low
Deal list
> I want to generate a random number in an interval using exponential low
> I know how to make that simply using uniform low
> x1 <- runif(1, 5.0, 7.5)
> this will generate a number between 5 et 7.5 but with uniform low.
> Could you help pease.?
> Regards
>
> --
> PhD candidate in Computer Science
> Address
> 3 avenue lamine, cité ezzahra, Sousse 4000
2003 Feb 13
1
SSL problem
Hi all
I have a problem !!!
I want to configure samba with windows 98 SE.
I have used this site as reference
http://www.linuxfocus.org/Francais/May2002/article247.shtml
when I make testparam , I got this messages !!
[root@linuxserver root]# testparm
Load smb config files from /etc/samba/smb.conf
Unknown parameter encountered: "ssl CA certFile"
Ignoring unknown parameter "ssl CA
2012 Feb 11
1
multiple histograms from a dataframe
Hi list
I need some help for drawing some histograms
I have a dataframe , say,
X Y Z T
I want to draw a histogram Z-T for each value of the couple (X-Y).
When I use thus syntax
> library(lattice)
> histogram(law[,3] ~ law[,66] | law[,1] )
it draws multiple histograms but by selecting distinct values of law[,1]
The deal is to make the same thing but for a couple of columns
Thanks in
2012 Feb 24
1
syntaxe problem
Hello,
I want to create 10 dataframe using a for loop.
I don t know what to do to create 10 different dataframes whose name is
parametrized with variable i.
This syntaxe fails. It create a unique fataframe called dfn.
Any input will help
Thanks
> for (i in 1:10){
+ filename=paste("avail4",i,sep = "_")
+ dfn=read.table(filename)
+ }
--
PhD candidate in Computer Science
2013 Feb 04
1
ggplot and colors
Hello,
I have a problem with ggplot and colors
I used this function to draw somes lines and I want them to be all black
(just to test)
however, I dont get any black line in the figure.
Do you have any experience with ggplot and manual colors??
ggplot(cmax, aes(cmax[,3], cmax[,6],colour=interaction(cmax[,1],cmax[,2])))
+ geom_line() + geom_point() +
2011 Oct 17
1
multiple lines with the same data frame?
Bonjour
I have this data frame and I am newbie in R.
I want to ask if it is possible to draw 10 lines in a plot such that: a line
for every colomn, the x - axis is the second column and the y-axis is the
third one.
Thank you for any input
1 0 1094442
1 0.2 1163576.2
1 0.4 1238539.6
1 0.6 1303510.4
1 0.8 1376573.2
1 1 1454175
2 0 1076068
2 0.2 1139246
2 0.4 1212344
2
2012 Feb 24
1
looping over string of frames when importing with 'sqlFetch' from a Microsoft Access database
Dear R-list,
I am trying to import (all) frames from a Microsoft Access database as individual data frames in a fancy loop, but I'm having troubles figuring out how to use the 'sqlFetch' from the RODBS package in a loop (mostly because I can't figure out how to loop over elements (I came from stata)
I would very much appreciate if anyone on the list could help me solve this
2010 Jun 01
5
How to make R automatic?
Hello, I have a question about how R can run automatically. Here is the
story:
A file called "data.csv" will be generated every couple of minutes in a
folder (overwrite itself). What I want R to do is:
1) scan the folder to find the file.
2) if the file is a newly generated file, process the file
3) output some file identifier on the screen, such as the time when the file
was
2012 Jan 18
4
R-Help
I am trying to create a frequency distribution and I am a bit confused.
Here are the commands I have entered:
> data <- read.csv(file="40609_sortedfinal.csv",head=TRUE,sep=",")
> NumberOfActionsByStatus = data$STATUS
> NumberOfActionsByUser = data$ETS_LOGIN
> NumberOfBidOffer = data$BID_OFFER
> NumberOfActionsByUser.freq = table(NumberOfActionsByUser)
>
2011 Oct 21
1
question about aggregate
Hi list
I am discovering R, and
--
PhD candidate in Computer Science
Address
3 avenue lamine, cité ezzahra, Sousse 4000
Tunisia
tel: +216 97 246 706 (+33640302046 jusqu'au 15/6)
fax: +216 71 391 166
[[alternative HTML version deleted]]
2007 Nov 06
0
problem with SAMBA as PDC
Hi list,
I am configuring a samba server as a PDC (called DSERVER). I have follow
some good docs to build my smb.conf file (see below).
However, my server does not works correctly: when I execute smbclient, I
don't find my workgroup (SOCINFO) alghouth I activated the wins support.
[adel@grid007 ~]$ smbclient -L localhost -U root
Password:
Domain=[DSERVER] OS=[Unix] Server=[Samba