Displaying 20 results from an estimated 600 matches similar to: "ggplot2 avoid automatic color selection"
2012 Nov 29
2
Analysis of Variance
Hi, I am encountering a difficulty I don't understand. Be patient, I'm very
new to analysis of variance.
If I load this data:
example12_7=read.table("http://msemac.redwoods.edu/~darnold/math15/data/chapter12/example12_7.dat",header=TRUE)
The run the oneway.test:
oneway.test(time~drug,data=example12_7,var.equal=TRUE)
I get these results:
data: time and drug
F = 4.1881, num
2007 Jul 05
3
summarizing dataframe at variable/factor levels
All,
Is there an efficient way to apply say "mean" or "median" to a dataframe
according to say all combinations of two variables in the dataframe?
Below is a simple example and the outline of a "manual" solution that
will work but is not very efficient
(could also generalize this to a function). Searched the archives and
docs but didn't see anything close to
2008 Jul 04
1
Repeated measures lme or anova
Hi
As I can't find an example of my data structure I'd like some advice on which is the most appropriate test for significant effects. If I should be using either lme or anova, is the relevant example below the best/correct way to do the test?
The Data...
2 groups of patients (5 in GroupA, 7 in GroupB)
3 short acting drugs, (I'm not concerned with residual effects from the previous
2011 Feb 08
1
Just another pattern matching / indexing question
Hi all, thank you for your patience.
I am dealing with a large dataset detailing patients and medications
Medications are hard to code, as they are (usually) meaningless unless
matched with doses.
I have a dataframe with vectors (Drug1, Drug2..... Drug 16) and individual
patients are represented by rows.
The vectors are actually factors, with 100s of possible levels (all the
drugs the patient
2011 Sep 28
1
number of items to replace is not a multiple of replacement length
Please help with this error message
drugbook is an 885 x 32 dataframe
>names(drugbook)
[1] "DRUG1" "DRUG2" "DRUG3" "DRUG4" "DRUG5"
[6] "DRUG6" "DRUG7" "DRUG8" "DRUG9" "DRUG10"
[11] "DRUG11" "DRUG12"
2007 Jul 03
1
xyplot and autokey, maintaining colors specified via "col" in key
All,
When specifying colors to xyplot w/ a groups argument, using
auto.key no longer maintains the colors properly. I've searched
the docs and help but haven't found exactly what I need ... I saw
a few examples in the archives involving par.settings but that doesn't
seem to do it. I also saw some people using key instead of auto.key, but
that didn't seem consistent. Is there a
2010 Jul 07
3
use sliding window to count substrings found in large string
Hello together,
I'm looking for advice on how to do some tests on strings.
What I want to do is the following:
(just an example, real strings/sequence are about 200-400 characters long)
given set of Strings:
String1 abcdefgh
String2 bcdefgop
use a sliding window of size x to create an vector of all subsequences
of size x
found in the set (order matters! ).
Now create, for every string
2003 Mar 13
0
Repeated measures 2-way anova -- robustness question
I'm a journalist, wondering what questions to ask about a study that
contrasted the impact on serum cholesterol of two drugs. This was a
40 dog study: 5 treatment blocks of 4 dogs each, randomized to: a
control block, two blocks at different doses of drug1 and two at
corresponding doses of drug2. Analysis was 2-factor repeated measures
ANOVA on treatment group and sampling time. Linear
2010 Oct 25
4
zoo.read intraday data
Hello all,
I'm trying to use zoo.read but can't figure out
how to deal with the time format. (example below)
would be nice if someone could help.
best regards,
Immanuel
---------------------------
L <- "Date,Time,Open,High,Low,Close,Up,Down
05.02.2001,00:30,421.20,421.20,421.20,421.20,11,0
05.02.2001,01:30,421.20,421.40,421.20,421.40,7,0
2011 Mar 25
4
two plots in qplot
Hello
I simply want to plot two variables against one 'year' variable in
qplot.
Is any way of doing this without reshaping data in long format and using
facet function afterwards?
Thank you
Denis
2011 Aug 26
1
kernlab: ksvm() bug?
Hello all,
I'm trying to run a gird parameter search for a svm.
Therefore I'M using the ksvm function from the kernlab package.
----
svp <- ksvm(Ktrain,ytrain,type="nu-svc",nu=C)
----
The problem is that the optimization algorithm does not return
for certain parameters.
I tried to use setTimeLimit() but that doesn't seem to help.
I suspect that ksvm() calls c code that
2011 Aug 22
1
Threads in R
Hello all,
I posted a questions on how to terminate a function call that does not
return after a certain time ( I can not modify the function code) some
time ago.
Since I didn't find a solution I just came up with the idea to run the
functions call in a separate thread who I could terminate a will.
Would this be possible? Any pointers in the right direction? A looked
briefly a snow and Rmpi
2012 Nov 09
1
R function data variable name argument
Hello fellow R-ers,
I have spent some time on this and it is driving me NUTS! I am sure there is a solution, so please help.
I am trying to create a function that will plot different lines for subsets of a dataset. For example, I am trying to look at different drug groups (drug2), let's say 1,2,3,4, and 5. The data has 2 different rates, college students and high school students (var names cs
2007 Sep 12
1
stastistical test on normalized data
Dear R-maillit,
I have to perform a stastistical test to asses if two grug show the same or different effect on my prepartion.
I tested on the same preparation only one drug and I have to use normalized data due to high variability in the control condictions.
What type can I use?
A non paramatric test right?
And how can do it on R software?
Thanks in advance
Simone
[[alternative HTML version
2010 Jul 05
3
adding a row of names to data.frame
Relative noob here, I have a data.frame and simply want to add an explicit column of names in column 1 of the form
"trial_number01" for row 1, "trial_number02" for row 2 .... etc. It is simply for visual purposes and to explain data to others. I've tried
Using row.names and other but still no luck, am sure it has been covered but I can't find it, can you please point
2011 Aug 20
1
How to abort function execution after x-seconds
Hello all,
I'm running a parameter grid optimization ( ksvm, kernlab package) and
the optimizer
seems not to converge for certain parameters and stays in a infinity loop.
Would it be possible to abort the execution after x-seconds and continue
with the next parameter set? Which R function do need to use to
accomplish this?
I had a look at, try() etc. but they didn't seem so fit my
2011 May 31
1
how to store object without loosing their class property
Hello all,
I'm trying to store some objects (class = "svm") , but if I use a list
the objects get somehow converted and I can't retrieve them as objects
of type "svm".
So how to I properly store objects of that kind?
best regards
-----------
library(e1071)
data(iris)
attach(iris)
## classification mode
# default with factor response:
model <- svm(Species ~ .,
2007 Nov 20
2
No longer able to browse windows share via Nautilus
I used to be able to browse the windows shares on the network through
Nautilus. I can see them as computers, but when I click on them, it
fails. (I'm on Ubuntu 6 LTS, AMD64)
About 3 months ago, this failed. But, the windows boxes can all still
access my shares on my Linux box.
I was going through the trouble shooting, and found this out, but I'm
not sure what to do next.
I am
2010 Nov 19
1
Set colour in tcl variable
Hello all,
using package tcltk this is my problem:
I want to set a colour of a tclVar().
I have a tklabel (fixed in position) which should display two variables
occasionally.
If a constraint is fulfilled, the tklabel should display
correct<-tclVar('correct') in green, otherwise it should display
wrong<-tclVar('wrong') in red!
To display the variables is no
2006 Feb 22
2
Ctrl+C does not work in virtual console
Hi all,
I have a problem with the virtual console. I run Xen 3.0.1 (compiled
from the sources) on debian 3.1 (as dom0 and domU) on an AMD Athlon 64.
I can''t terminate programs with ctrl+c. If I try for example to ping a
machine, ping runs forever and cannot be stopped from the console.
ctrl+z does then not work either. But if I do the same with ssh,
everything works fine. There are