Displaying 20 results from an estimated 90 matches for "abou".
Did you mean:
about
2017 Sep 12
2
Load R data files
...file="F:/Fall_2017/5-STA574/2-Notes/1-R/1-R_new/chapter4-Entering_Data/datahs0csv2.rda")*
>
It seems for me that the file was loaded to R. But when I typed the data
name, it says that the not found.
> *datahs0csv2*
*Error: object 'datahs0csv2' not found*
with many thanks
abou
On Tue, Sep 12, 2017 at 2:53 PM, Ulrik Stervbo <ulrik.stervbo at gmail.com>
wrote:
> Hi Abou,
>
> You haven't saved the datahs0csv.
>
> When you are done manipulating datahs0csv you can use save(datahs0csv,
> file = 'datahs0csv.rda'). Then you should be able to...
2012 Mar 20
0
Question abou pROC package
How can I implement multiple testing with Bonferroni correction of ROC curve
in R??
--
View this message in context: http://r.789695.n4.nabble.com/Question-abou-pROC-package-tp4488271p4488271.html
Sent from the R help mailing list archive at Nabble.com.
2017 Sep 12
0
Load R data files
The object you load has the same name as the object you saved. In this case
datahs0csv and not the name of the file sans .rda
On Di., 12. Sep. 2017, 21:26 AbouEl-Makarim Aboueissa <
abouelmakarim1962 at gmail.com> wrote:
> Dear All:
>
>
> It was saved, but there was a space somewhere. So it works for me now.
>
> I do have another similar problem.
>
> I saved an R data file
>
>
> save(datahs0csv,file="
> F:\F...
2003 Jul 09
1
more abou msn
Hi,
Talking about messenger,,, it's still necesary to do
HKEY_CURRENT_USER\Software\Microsoft\MessengerService\Corp2PC_Phone
equals to '1' ??? But it's still sending the '+'
digit, so it's necesary to stripMSD?
Thanks a lot
cmayor
___________________________________________________
Yah...
2017 Sep 24
3
Shift the normal curve to the top or near to the top of the histogram
...9.1, 9.2, 9.4, 9.4, 9.7, 9.9, 10.2, 10.4, 10.8,11.3, 11.9)
x<-seq(5,12, 0.001)
hist(Lizard.tail.lengths, main = "Normal Probability Plot of Lizard Tail
Lengths")
curve(dnorm(x ,mean=mean(Lizard.tail.lengths),sd=sd(Lizard.tail.lengths)),
add=TRUE, col=2, lwd = 2)
with many thanks
abou
______________________
AbouEl-Makarim Aboueissa, PhD
Professor of Statistics
Department of Mathematics and Statistics
University of Southern Maine
[[alternative HTML version deleted]]
2017 Sep 12
3
Load R data files
...*
Error in readChar(con, 5L, useBytes = TRUE) : cannot open the connection
In addition: Warning message:
In readChar(con, 5L, useBytes = TRUE) :
cannot open compressed file 'datahs0csv.rda', probable reason 'No such
file or directory'
Any help will be appreciated.
with thanks
abou
______________________
AbouEl-Makarim Aboueissa, PhD
Professor of Statistics
Department of Mathematics and Statistics
University of Southern Maine
[[alternative HTML version deleted]]
2017 Sep 25
0
Shift the normal curve to the top or near to the top of the histogram
Hi Abou,
Try this:
library(plotrix)
curve(rescale(dnorm(x
,mean=mean(Lizard.tail.lengths),sd=sd(Lizard.tail.lengths)),
c(0,6)),add=TRUE, col=2, lwd = 2)
Jim
On Mon, Sep 25, 2017 at 9:35 AM, AbouEl-Makarim Aboueissa
<abouelmakarim1962 at gmail.com> wrote:
> Dear All:
>
> One more thing....
2017 Sep 12
0
Load R data files
Hi Abou,
You haven't saved the datahs0csv.
When you are done manipulating datahs0csv you can use save(datahs0csv, file
= 'datahs0csv.rda'). Then you should be able to load the data.
HTH
Ulrik
On Tue, 12 Sep 2017, 20:46 AbouEl-Makarim Aboueissa <
abouelmakarim1962 at gmail.com> wrote:...
2017 Dec 29
2
Draw Overlapping Circles with shaded tracks
...using R, and make both circles uncovered. I am
trying to make it in MS words, but I could not. Your help will be highly
appreciated.
In my previous post I added the image of the two circles, but the post
never published. I just thought to resent the post again without the image.
with many thanks
abou
______________________
*AbouEl-Makarim Aboueissa, PhD*
*Professor of Statistics*
*Department of Mathematics and Statistics*
*University of Southern Maine*
[[alternative HTML version deleted]]
2017 Aug 16
0
Fwd: Install package "diagram"
Dear All:
When I selected "yes" to the question Question: "would you like to use a
personal library instead?", it works
thanks any way
abou
---------- Forwarded message ----------
From: AbouEl-Makarim Aboueissa <abouelmakarim1962 at gmail.com>
Date: Wed, Aug 16, 2017 at 11:58 AM
Subject: Install package "diagram"
To: r-help at r-project.org
Dear All:
I am trying to install the package "diagram". It is in t...
2017 Sep 19
3
Graph f(x) = 1/x
...m=c(-5, 5), xlab = "x", ylab = "f(x)
= 1/x", lwd = 2, col ="red")
abline(h=0, lty=2, col = "blue")
abline(v=0, lty=2, col = "blue")
axis(1)
axis(2)
title(main="The Graph of f(x) = 1/x")
any help will be highly appreciated.
with thanks
abou
______________________
AbouEl-Makarim Aboueissa, PhD
Professor of Statistics
Department of Mathematics and Statistics
University of Southern Maine
[[alternative HTML version deleted]]
2017 Aug 16
3
Install package "diagram"
....libPaths()[1L], dependencies = NA, type
= type) :
'lib = "C:/Program Files/R/R-3.4.1/library"' is not writable
Error in install.packages(NULL, .libPaths()[1L], dependencies = NA, type =
type) :
unable to install packages
>
Any help will be appreciated.
with many thanks
abou
--
______________________
AbouEl-Makarim Aboueissa, PhD
Department of Mathematics and Statistics
University of Southern Maine
[[alternative HTML version deleted]]
2017 Dec 17
1
Auto Data in the ISLR Package
myAuto <- Auto[ grep("ford|toyota",Auto$name),]
myAuto$Make <- NA
myAuto$Make[grep("ford",myAuto$name)] <- "Ford"
myAuto$Make[grep("toyota",myAuto$name)] <- "Toyota"
Regards,
Eric
On Sun, Dec 17, 2017 at 11:58 AM, AbouEl-Makarim Aboueissa <
abouelmakarim1962 at gmail.com> wrote:
> Dear Eric:
>
> Thank you very much. It works nicely.
>
> *Just one more thing;* how to create a new variable (say, *Make*) with *Make
> = Ford* for the ford brand and *Make = T**oyota* for the toyota brand.
>...
2017 Sep 20
2
Install the Package "ISwR"
...= NA, type =
type) : *
* unable to install packages*
*>*
When I select the ISwR package from the list I got I message saying "*Question?
Would you like to use a personal library instead?*" I answered by No. Then
it gives me the above message.
Thank you for your time.
with thanks
abou
______________________
AbouEl-Makarim Aboueissa, PhD
Professor of Statistics
Department of Mathematics and Statistics
University of Southern Maine
[[alternative HTML version deleted]]
2017 Dec 29
0
Draw Overlapping Circles with shaded tracks
Hi Abou,
Without an illustration it's hard to work out what you want. here is a
simple example of two circles using semi-transparency. Is this any
help?
pdf("circles.pdf")
plot(0:10,type="n",axes=FALSE,xlab="",ylab="")
draw.circle(4,5,radius=3,border="#ff00...
2017 Sep 19
1
Graph f(x) = 1/x
Dear Zeileis:
Thank you very much
abou
On Tue, Sep 19, 2017 at 4:13 AM, Achim Zeileis <Achim.Zeileis at uibk.ac.at>
wrote:
>
>
> On Tue, 19 Sep 2017, AbouEl-Makarim Aboueissa wrote:
>
> Dear All: good morning
>>
>> I am trying to graph the function y=f(x)=1/x over the interval (-5,5). But
>> I am...
2017 Dec 31
2
Draw Overlapping Circles with shaded tracks
...quot;,axes=FALSE,xlab="",ylab="")
draw.circle(4,5,radius=3,border="#ff0000aa",lwd=10)
draw.circle(6,5,radius=3,border="#0000ffaa",lwd=10)
dev.off()
On Friday, December 29, 2017, 6:06:32 PM EST, Jim Lemon <drjimlemon at gmail.com> wrote:
Hi Abou,
Without an illustration it's hard to work out what you want. here is a
simple example of two circles using semi-transparency. Is this any
help?
pdf("circles.pdf")
plot(0:10,type="n",axes=FALSE,xlab="",ylab="")
draw.circle(4,5,radius=3,border="#ff00...
2012 Aug 17
4
Spaced text
Hi eveybody!
I've got a suggestion to think about. Although i think that the drawbacks are bigher than the advantages im goong to tell you abou my idea:
My idea is another syntax for e m p h a s i z e d words. It uses two spaces before and after the emphasized part and alternating space and letter in between, just like in the sentence before....
2010 Feb 27
3
somebody help me about this error message...
...want to insert a new data into "a2" variable. so, i did next
sentence
paste("a",2,sep="") <- 4
so, i got this error message
Error in get(paste("a", 2, sep = ""))[1] <- 4 :
target of assignment expands to non-language object
anyone knows abou this error message and tell me how to solve thie problem,
please......
--
View this message in context: http://n4.nabble.com/somebody-help-me-about-this-error-message-tp1571700p1571700.html
Sent from the R help mailing list archive at Nabble.com.
2017 Dec 17
0
Auto Data in the ISLR Package
Dear Eric:
Thank you very much. It works nicely.
*Just one more thing;* how to create a new variable (say, *Make*) with *Make
= Ford* for the ford brand and *Make = T**oyota* for the toyota brand.
Once again thank you all.
abou
______________________
*AbouEl-Makarim Aboueissa, PhD*
*Professor of Statistics*
*Department of Mathematics and Statistics*
*University of Southern Maine*
On Sun, Dec 17, 2017 at 3:10 AM, Eric Berger <ericjberger at gmail.com> wrote:
> myAuto <- Auto[ grep("ford|toyota"...