Displaying 20 results from an estimated 500 matches similar to: "using reshape to do ANOVA mixed models"
2008 Jan 22
2
extension to nlme self start SSmicmen?
Dear list,
Has anyone created a version of SSmicmen that allows testing for group
differences? The basic Michaelis-Menten equation is:
(Bmax * X) / (Kd + X).
The nlme package allows modeling of random effects for Bmax and Kd as
needed, but I curious how I can build in group differences? I have
receptor binding data for strains of mice, and following Pinheiro and
Bates' lead in their
2006 Feb 08
2
rotating axis / mtext labels
Hello list.
Is it possible to use par(srt=45) to rotate text by 45 degrees along the
x-axis of a plot. Using:
<code>
x_names<-c("C57 Nv", "C57 Vacc", "129 Nv", "129 Vacc", "IFNgR Nv", "IFNgR Vacc")
par(srt=45)
mtext(font=2, x_names, side=1, line=1, at=l, cex=1.2)
par(srt=0)
</code>
doesn't seem to work in R 2.2.0
2010 Jun 28
2
sampling one random frame from each unique trial?
hello everyone. please bear with me if this is very easy...
I have a data set with many trials, and frames within each trial. I would
like to pull out one random frame from each trial.
here is an example. i have 4 unique trials (file), and various frames within
each (time_pred). I would like to randomly sample 4 rows, but 1 from each
trial (file).
this sample data is called "h"
2010 Jun 05
1
Error Bar Issues
Hello all,
I am an undergraduate student who is having syntax issues trying to get
error bars on my graph.
This is the data, which I assigned the name "Saline" to.
Time Average SEM
1 -20 0.000000 0.0000000
2
3 30 0.000000 0.0000000
4 45 3.227902 0.7462524
5 60 5.066664 1.1623944
6 80 6.107491 1.5027762
7 110
2010 Jun 13
1
Break in the y-axis
Hello all,
I have been having trouble getting a break in my y-axis. All of my data
points are up around 100-200, but the graph has to start at zero, so i would
like to remove all the white space using a break symbol. I have been able
to get the break and labels to be correct, however, I can't seem to get the
data to match the axis anymore. I must be using the axis.break() in plotrix
2009 Dec 19
2
simple main effect.
Hi, I'm a bit new to R and I would like to know how can I compare simple
main effects when using the aov function.
I'm doing a mixed model ANOVA with two between subjects variables and one
within.
When I get an interaction of two of the variables I don't know how to check
for simple main effect of that interaction (A at B1 and A at B2 for
example).
The aov function is very simple but
2010 Jun 09
3
comparing two regression models with different dependent variable
Hi,
I would like to compare to regression models - each model has a different
dependent variable.
The first model uses a number that represents the learning curve for reward.
The second model uses a number that represents the learning curve from
punishment stimuli.
The first model is significant and the second isn't.
I want to compare those two models and show that they are significantly
2011 Feb 01
1
Setting maximum value of the legend on an image.plot and animation
Hello,
I'm doing the following:
library(ncdf)
library(fields)
library(animation)
saline <- open.ncdf("salinity_1990.nc")
salt = get.var.ncdf(nc=saline, varid="Salinity")
# create an animation of the complete temporal domain in the ncdf file.
saveHTML({
for (i in 1:364) {
image.plot(salt[, , i])
}
}, img.name = "salinity.img",
2018 Jan 03
2
Nvidia maximum pixel clock issue in kmod-nvidia-384.98
Hi everyone,
On CentOS 7 I'm running into an issue with the latest nvidia driver
from elrepo: kmod-nvidia-384.98-1.el7_4.elrepo.x86_64
This driver version seem to introduce issue in detecting video modes
when a monitor is connected using DVI. As soon as the machine attempts
to start X, nothing happens and the monitor goes into sleep mode
reporting that it has 'no signal'.
It is
2014 Sep 24
1
[PATCH 1/2] allow path to envyas binary to be specified
Signed-off-by: Ilia Mirkin <imirkin at alum.mit.edu>
---
src/shader/Makefile | 13 +++++++------
1 file changed, 7 insertions(+), 6 deletions(-)
diff --git a/src/shader/Makefile b/src/shader/Makefile
index 46658e9..2d789be 100644
--- a/src/shader/Makefile
+++ b/src/shader/Makefile
@@ -24,20 +24,21 @@ NVF0_SHADERS = xfrm2nvf0.vpc \
videonvf0.fpc
SHADERS = $(NVC0_SHADERS)
2009 Jan 20
3
Setting Resolution Modes in xorg.conf
I asked on the Gentoo forums, and surprisingly haven't gotten an answer.
When I run xrandr, I get this output:
Code:
Screen 0: minimum 2960 x 1050, current 2960 x 1050, maximum 2960 x 1050
default connected 2960x1050+0+0 0mm x 0mm
2960x1050 50.0*
I'm using TwinView with a 1680x1050 monitor and a 1280x1024 monitor. And I want to set up some different modes in xrandr. When
2010 Feb 21
2
plot is not keeping the order of variable
Hi,
I created a simple data frame with one factor and one numerical variable.
The factor was actually a vector of names of techniques to trimm reaction
time data.
I want to create a plot that shows the value of F test for every trimming
method.
So the data frame has its trim factor (who has those labels
2013 Jan 24
2
[PATCH 1/2] lib: Add CLEANUP_FREE macro which automatically calls 'free' when leaving scope.
From: "Richard W.M. Jones" <rjones@redhat.com>
Use the macro like this to create temporary variables which are
automatically cleaned up when the scope is exited:
{
CLEANUP_FREE (char *, foo, strdup (bar)); /* char *foo = strdup (bar) */
...
// no need to call free (foo)!
}
On GCC and LLVM, this is implemented using __attribute__((cleanup(...))).
On other
2019 Aug 28
2
[PATCH v3 5/7] drm/nouveau: utilize subconnector property for DP
On Wed, Aug 28, 2019 at 10:47:08AM -0400, Ilia Mirkin wrote:
> On Wed, Aug 28, 2019 at 10:38 AM Ville Syrjälä
> <ville.syrjala at linux.intel.com> wrote:
> >
> > On Mon, Aug 26, 2019 at 09:36:50AM -0400, Ilia Mirkin wrote:
> > > This should probably be fixed to account for the scenario where an
> > > HDMI connector is plugged directly into the DP++ port. I
2010 Feb 12
2
Average of a variable against another.
Dear helpers,
FYI, I am a beginner of R, just have dealt with MATLAB or JAVA.
I want to know how to solve one problem given 4 variables: year_1, year_2,
tall_1, tall_2.
The tall_1 is measured at year_1 and tall_2 at year_2.
The tall has grown up such as uniformly 1 cm/yr.
The data is like
year_1 year_2 tall_1 tall_2
2007 2010 12 15
1999 2009 6 16
2003 2005 11 13
2019 Aug 28
2
[PATCH v3 5/7] drm/nouveau: utilize subconnector property for DP
On Mon, Aug 26, 2019 at 09:36:50AM -0400, Ilia Mirkin wrote:
> This should probably be fixed to account for the scenario where an
> HDMI connector is plugged directly into the DP++ port. I don't think
> the dp.subconnector property will be valid in that case.
> (Unfortunately I don't remember how one detects that particular
> situation.)
One may or may not be able to detect
2016 Mar 01
1
Dual monitors have same identifier
------------------------
From: Efrem Mc <efremmc2 at gmail.com>
Date: Tue, 1 Mar 2016 00:27:52 -0500
> 'Normally, the monitor-edid, can report the options as well as the
> journalctl -k on boot. I have a GTX 960, and it has a DVI-I, DVI-D, >
DP 1.2, HDMI, and it names the ports as follows, DVI-I as
> (DVI-I-1/DFP-0, DFP-1 (HDMI-1), DFP-2 (DVI-D-1/DFP-2), and for the
>
2020 Aug 19
3
[RFC 13/20] drm/i915/dp: Extract drm_dp_downstream_read_info()
On Tue, Aug 11, 2020 at 04:04:50PM -0400, Lyude Paul wrote:
> We're going to be doing the same probing process in nouveau for
> determining downstream DP port capabilities, so let's deduplicate the
> work by moving i915's code for handling this into a shared helper:
> drm_dp_downstream_read_info().
>
> Note that when we do this, we also do make some functional
2010 Jun 11
2
Misplacement of Greek letter
Hello.
I am trying to get my axis label to read as follows
(The symbol) Delta AUC blah blah...
then below it...(some other text)
The problem is the Delta symbol shows up beside the "(some other text)"
rather than the "AUC". Does any one know how I can get the Delta to remain
beside AUC?
Here is the actual command should you care to look at it.
par(mar=c(8,8,4,4))
2009 Apr 27
2
no backend defined for idmap config
Hello Samba List,
I am currently running samba 3.3.2 joined to ADS and I am consistently
getting this error in the winbind log:
no backend defined for idmap config DOMAIN
Also, I seem to lose association between user and uid. I think it happens
when the winbind cache expires.
Here's my smb.conf:
[global]
workgroup = DOMAIN
realm = DOMAIN.COM
server string = server