Displaying 20 results from an estimated 4000 matches similar to: "slplot issue"
2009 Dec 15
1
Reference to R in Publication
Magazine: Pharmaceutical Manufacturing
Date: Nov/Dec 2009
Title: What Your ICH Q8 Design Space Needs: A Multivariate Predictive
Distribution
Author: Peterson, John J.
Company: GlaxoSmithKline Pharmaceuticals
Summary: Multivariate Predicitive distibution quantifies the level of QA
in a design space. "Parametric Bootstrapping" can help simplify early
analysis and compliment Bayesian
2010 Jul 19
1
pcaMethods and Lattice help.
I've been using the pcaMethods to develop a scores matrix
=======================================
data(iris)
pcIr <- pca(iris[,1:4], method="nipals", nPcs=3, cv="q2")
test <- scores(pcIr)
========================================
What I'm looking to do is to use lattice's barchart to plot the scores
something like below, but expanded to all the scores
2018 May 30
0
Evaluation failure of IAPWS95 functions in a rowwise manner (tidyverse style)
Hi Shawn,
I don't think it has anything to do with the tidyverse. If you keep
simplifying your example you'll get all the way down to
> DTp(T=c(279,294),p=c(0.46,0.46))
[1] 1000.12283
--Ista
On Wed, May 30, 2018 at 2:14 PM, Shawn Way <SWay at meco.com> wrote:
> I'm trying to use the IAPWS95 package with the tidyverse packages. For some reason, the function is not
2012 Aug 01
0
Plotting cumsum data using lattice plots according to date conditioned by name.
I've been playing around with data like the following:
Name Date Hrs
Way, S 2-3-12 8
Nun, B 2-3-12 9
Way, S 2-4-12 7.5
Nun, B 2-4-12 9
Gus, T 2-5-12 8
I've been able to take this into a data.frame and even develop a cumsum
for each of the people
d.cum <- with(data,by(Hrs,
INDICES=list(date=as.POSIXct(Name)),FUN=cumsum))
This gives me a list personnel with an array
2018 May 30
2
Evaluation failure of IAPWS95 functions in a rowwise manner (tidyverse style)
I'm trying to use the IAPWS95 package with the tidyverse packages. For some reason, the function is not outputting the correct rho.
A minimal example with results is below. I've also included the definition of the DTp function from the IAPWS95 library.
====================================
library(IAPWS95)
library(tidyverse)
initial <- data.frame(T=c(279,294),p=c(0.46,0.46))
2004 Oct 19
2
Sweave and Trellis in R 2.0.0patched (Windows)
I've been using the following code to plot using Sweave in version
1.9.1
library(RODBC)
library(lattice)
channel <-odbcConnectExcel("h:/water.xls")
data <- sqlQuery(channel,"select * from `Sheet1$` where Test = 'TOC' and
(Valve='5010-05' or Valve='8030-V26' or Valve='1180-08' or
Valve='5040-08')")
odbcClose(channel)
srt <-
2005 Sep 19
1
rsync and HP11.11 problem
Hi All,
I am trying to run rsync from HP11.00 machine (source) to HP11.11
machine, as test for migration plan. The data on the source is not
changing since it is snapshot of active data.
Every time we try to run the following command:
timex rsync -avuz --delete isynh09:/snap
We get the following error:
receiving file list ... done
mknod
2008 Mar 17
10
RSpec and RCov with JRuby
Hi,
I am using JRuby (trunk) and wrote a bunch of specifications for my
code. Everything works fine so far.
Now I am trying to integrate RCov in my test run. I have installed
RCov without the C extensions. I tried it with a simple script and it
worked (pretty slow, but it doesn?t matter).
But when I add the rcov options to my Rake task, RCov is not invoke
properly!
Rakefile:
2004 Feb 04
5
Date Time Conversion problems...
At one time (version 1.7), the code below used to work for converting and
extracting based on the Date Time. In version 1.8.1, something changed I
know, but I cannot for the life of me figure out what...
Data:
UserName,RequestDate,PO,OrderDate,ExpDelivDate,Vendor,Total
"Woody, Jim",12/19/2002,AP15063,1/7/2003,2/10/2003,Ames ,8570
"Harrold,
2003 Oct 15
3
Design and Hmisc
I'm looking for design and hmisc version 2.0 for R 1.8 for windows. I've
found design 2.0 in the downloads for R1.7 but not hmisc.
I've also checked Dr. Harrell's site and it only goes to 1.6 for windows.
Any thoughts?
Shawn Way
2004 Apr 15
1
residuals
I'm trying to determine the lack of fit for regression on the following:
data <- data.frame(ref=c(0,50,100,0,50,100),
actual=c(.01,50.9,100.2,.02,49.9,100.1),
level=gl(3,1))
fit <- lm(actual~ref,data)
fit.aov <- aov(actual~ref+Error(level),data)
According to the information I have, the lack of fit for this regression is
the
2004 Oct 13
3
Maps and plotting
At our facility we have multiple sample points that are sampled on any
given day. What I would like to do is create a map of the facility with
the sample points (and point labels) and when we have out of
specification results, place a transparent dot over the area on the map.
As the number of OOS results builds up, I envision the dot getting
darker.
Are there any packages out there that can aid
2004 Oct 14
1
FW: Maps and plotting
Thanks for the help on the translucent dots. What would be the best
method for creating a map of the facility? I looked into map* in the
libraries and didn't find anything on creating the maps, just using
them.
Thanks again...
Shawn Way, PE
Engineering Manager
sway at tanox.com
-----Original Message-----
From: Prof Brian Ripley [mailto:ripley at stats.ox.ac.uk]
Sent: Thursday, October
2003 Jun 26
2
Plots using POSIX
Is there a reason that the bottom axis changes color when POSIX data is used
in plot function?
For example:
> timedata <- c("2/3/2003","3/4/2003","5/4/2003")
> timedata2 <- strptime(timedata,format="%m/%d/%Y")
> numdata <- c(2,3,4)
> plot(as.POSIXct(timedata2),numdata,col="red",type="o")
As compared to:
>
2002 Apr 12
2
Lattice Package...
I have two questions:
1. I've tried to use the lattice package with the development version of R
(1.5.0), windows 2000, and it consistantly crashes RGUI and Rterm, on two
seperate installations...
2. The real question... Is it possible to change the barchart horizontal
bars on lattice to give vertical bars? If so, could you please give me a
hint on how to do so?
Thanks,
Shawn Way
2012 Dec 18
2
Gluster and public/private LAN
I have an idea I'd like to run past everyone. Every gluster peer would
have two NICs - one "public" and the other "private" with different IP
subnets. The idea that I am proposing would be to have every gluster
peer have all private peer addresses in /etc/hosts, but the public
addresses would be in DNS. Clients would use DNS.
The goal is to have all peer-to-peer
2004 Jun 07
1
Xtable giving an interesting problem
I'm using the current version of xtable for 1.9.0 and I have an
interesting error:
Error in match.names(clabs, names(xi)) : names don't match previous
names:
F value, Pr(>F)
In addition: Warning message:
longer object length
is not a multiple of shorter object length in: clabs == nmi
This is produced in the following manner:
>data.trans <-
2001 Sep 12
1
Analysis of Varience question.
I'm trying to use R for some of the analysis shown in Box, Hunter and Hunter
(1979, I believe) using the aov function. I'm using the first example in
chapter 6, where they are determining the analysis of varience between 4
treatments.
In this example, the are determineing the analysis between and within
treatments, which I can get by
aov(response~treatment+Error(treatment))
Where
2008 Jan 23
4
redirect_to broken?
Is ActionController''s redirect_to method broken by Facebooker? When I try to invoke it and execute through apps.facebook.com, I get a blank page returned, response code 200, no redirect. When I try to connect directly to the server (not through apps.fb), I get the infinite recursion error described minutes ago. Are any of you able to use redirect_to successfully, and if so, any ideas
2004 Mar 11
6
Trouble mounting a windows share from Linux
I have Fedora Core 1 workstations configured with winbind logging onto our
NT domain. Everything is going well except that I cannot seem to figure out
how to connect to a windows home directory on a Win2000 server. Here is the
scenario:
W2K server with home directories for each user:
Each user has modify permissions to their share
Administrator has full control
First off, I need to somehow