Displaying 20 results from an estimated 5000 matches similar to: "Order of multiple plots"
2009 Sep 27
2
Re ad in multiple datasets
Hello, all:
I have twenty datasets named as: data1.csv, data2.csv, ?, data20.csv. I am
trying to read all of them into R by using loop and function read.table(),
but I don't know how to handle the name of datasets. Has anybody have
encountered a similar problem? Or do you have any suggestions? Your help
would be greatly appreciated.
Legen
--
View this message in context:
2009 Jun 23
2
Plot with a vertical line at zero on x axis
Hallo, All,
I cannot add one straight vertical line at 0.0 on x axis using the following
data and R code:
y<-c(0.037790309,0.020307312,0.021109653,0.050216689,
0.026979484,0.027619193,0.024070163,0.021996969,
0.007831769,0.020065109,0.005903177,0.008182403)
d<-data.frame(cbind(y,seq(1:12)))
colnames(d)<-c("y","x")
attach(d)
2009 Nov 10
1
Data transformation
Dear all,
I have a dataset as below:
id code1 code2 p
1 4 8 0.1
1 5 7 0.9
2 1 8 0.4
2 6 2 0.2
2 4 3 0.6
3 5 6 0.7
3 7 5 0.9
I just want to rewrite it as this (vertical to horizontal):
id var1 var2 var3
2009 Jun 24
2
change the height or scale of the y axis
Hallo, All,
I have a question about changing the height or scale of the y axis. When I
use following two R codes, I can get two plots. Please look at the y axes,
the number of indices (x1, x2, ?) on the y axis in the first plot is smaller
than that in the second plot, and hence the space between any two indices in
the first plot is wider than that in the second plot. As the number of
indices
2008 Oct 26
2
Two sample Cramer-von Mises test
Hall all,
Where can I find the two sample Cramer-von Mises test in R package?
Thank you.
Legendy
--
View this message in context: http://www.nabble.com/Two-sample-Cramer-von-Mises-test-tp20174229p20174229.html
Sent from the R help mailing list archive at Nabble.com.
2007 May 16
1
WaitExten not responding on key presses
Hi,
I have the problem that WaitExten is not responding to key presses. Here
are the sections from my extensions.conf:
[globals]
incoming_call=0
menu=0
announce=0
[internal]
exten => 777,1,Goto(hotline,${EXTEN},1)
[hotline]
exten => _X.,1,Set(CALLERID(name)=Hotline)
exten => _X.,n,Set(original_extension=${EXTEN})
exten => _X.,n,GotoIf($[${announce}=1]?4:10)
exten =>
2006 Aug 07
9
problems with ActionMailer
Hi all,
I''m trying to create a worker to send a mail to all the users in my
db. Right now I''m doing the tests, this is the code in my worker
(Masivo is the ActionMailer subclass):
def do_work(args)
@progress = 0
@logger.info("MAILER: starting job")
records = Record.find(:all)
total = records.size
records.each_with_index do |record, idx|
2015 May 21
26
[Bug 90567] New: Display freeze when starting League of Legends (Wine)
https://bugs.freedesktop.org/show_bug.cgi?id=90567
Bug ID: 90567
Summary: Display freeze when starting League of Legends (Wine)
Product: xorg
Version: 7.6 (2010.12)
Hardware: Other
OS: All
Status: NEW
Severity: normal
Priority: medium
Component: Driver/nouveau
Assignee:
2008 Mar 07
2
training svm
What should I do if I need to train svm() with data having same value across all rows in some columns. These must be the important features of the class and we cant exclude these columns to build up models.
The error I am getting is:
Error in predict.svm(ret, xhold) : Model is empty!
In addition: Warning message:
In svm.default(datatrain, classtrain) :
Variable(s) 'F112' and
2003 Sep 11
2
Problem in installing "quantreg" package
Hi,
I was trying to install "quantreg" package in an R session, but got the
following error message:
ERROR: cannot write to or create directory '/usr/lib/R/library'
Can anyone suggest what I need to do?
Swagata Nandi
2009 Sep 11
3
For sending my R package as part of R-project
To Whom It May Concern:
I have an R package and want to put this package be part of R-project and available to anyone who is interested in.
The R package is created for my paper, titled "Acceptance Sampling Plans from Truncated Life Tests Based on the Birnbaum-Saunders Distribution for Percentiles". The paper has been accepted by Communications in Statistics: Simulation and
2006 Jun 16
4
problem with join
Hi all,
I''m having a problem with a join inside a paginate, the code is like this:
@ruta_pages, @rutas = paginate :rutas,
:conditions => conds_arr,
:joins => "AS ru LEFT JOIN vehiculos AS ve ON ru.vehiculo_id = ve.id",
:per_page => 10,
:order => "fecha DESC"
The problem with this, is that the query returns the
2008 Dec 09
1
Re sampling with index
Hallo, All,
I have a question needs your help.
I just want get a sample with the original index. For example, I have a
dataset,
ind x
1 39
2 24
3 15
4 75
5 61
After resample, I want to get a new dataset like this (with the original
index)
ind x
3 15
5 61
1 39
Thank you in advance.
Legendy
--
View this message in context:
2007 Jul 24
2
plotting gam models
Hi everybody,
I am working with gams and I have found some questions when plotting gams models.
I am using mgcv, and my model looks something like this:
model<- gam(x ~ s(lat,long))
I can plot the output of the model using plot(model) or plot.gam(model) and I get a surface plot.
That is ok, but what I want to do now is to extract the data used to perform the surface plot. Like that I
2014 Apr 02
3
Typeof for character vector in dataframe returns integer
Hi ,
I want to know is this behavior expected and why is that ? Need some help
gender <- c("F", "M", "M", "F", "F", "M", "F", "F")
> age <- c(23, 25, 27, 29, 31, 33, 35, 37)
> df<- data.frame(gender,age)
> typeof(df[[1]])
[1] "integer"
2005 Mar 03
3
Need suggestions for plotting 3D plot
Hi Everybody,
I am a newbie in R. I have a data in the form of a
matrix which I want to make some 3D plots using R.
There is some functions for instance hist() for 2D
plots, but I cant find any function for 3D plots. Is
there any function available in R for 3D plots? If so,
is there any documention available on internet so that
I can go through.
With regards,
Soumyadeep
2005 Feb 22
1
Does R has the function for garch-t, gjr-garch, qgarch and egarch
Dear all,
I would like to know that R has the function for garch-t,gjr-
garch,qgarch and egarch.
Best Regards,
Luck
2009 Sep 10
1
Order a vector and move to new vector
I currently have a data frame with a Fund ID and NAV value. Is it possible
to order the data frame and move to separate columns in a new data frame or
matrix in R without using a for loop? I suppose I'd like to use a built in
function to make it faster because I will have around 60,000 entries to sort
and my current program takes too long to do this. I know how to use order,
but is there a
2003 Sep 11
1
Problem in installing quantreg package
I was trying to install package "quantreg" in an R session, but I got
the follwing error message:
ERROR: cannot write to or create directory '/usr/lib/R/library'.
Can anyone suggest what I need to do to fix it up?
Swagata Nandi
2013 Mar 09
1
Changing default order of plots in par
Hi,
I wanted to change the order of how the plots appear in a multiplot
scenario. For example, in the code below:
#####
pdf('test.pdf',width=8,height=8)
par(mfrow = c(2,2))
for(i in 1:2){
v1 <- sample(1:1000,50)
v2 <- sample(1:1000,50)
mat <- cbind(v1,v2)
plot(v1,v2)
boxplot(mat)
}
dev.off()
#######
The plot ordering is that the first row gets filled in first,