similar to: Blom transformation in R

Displaying 20 results from an estimated 30000 matches similar to: "Blom transformation in R"

2008 Nov 16
8
Mirror and RaidZ on only 3 disks
Hi, I have a small Linux server PC at home (Intel Core2 Q9300, 4 GB RAM), and I''m seriously considering switching to OpenSolaris (Indiana, 2008.11) in the near future, mainly because of ZFS. The idea is to run the existing CentOS 4.7 system inside a VM and let it NFS mount home directories and other filesystems from OpenSolaris. I might migrate more services from Linux over time, but for
2012 May 15
2
R
To all moderators i guess, my question was probably not clear this is not a homework, i am trying to understand R by doing some exercise in my book. I will however participate a course in R in august and thought it could be good to have some knowledge before. I hoped for help from you since i have no instructor to ask, that would have been my first choice. thanks anyway Lotta
2012 May 15
9
help
1. Emma is performing an experiment that requires individual handling of some animals. The sizes of the animals are lognormally distributed: The natural logarithms of their sizes has a normal distribution with mean 3 and standard deviation 0.4. The time (in minutes) it takes to handle each animal is given by 10 + s · 1.5 + eε for animals with s ≤ 20 20 + s · 0.8 + eε for animals with s > 20
2006 Dec 04
4
beginning my R-learning
Hello, I'm just beginning to learn R. What books/online learning modules with datasets would you suggest? Thank you! Best wishes, Michael ____________________________________ Michael McCulloch Pine Street Clinic Pine Street Foundation 124 Pine Street, San Anselmo, CA 94960-2674 tel 415.407.1357 fax 415.485.1065 email: mm at pinest.org web: www.pinest.org
2011 Nov 23
1
MWI for non-subscribed Realtime peers?
Hi, I have an Asterisk behind an OpenSIPS proxy. The proxy handles registrations and also SIP SUBSCRIBE for MWI. The Asterisk are configured to send NOTIFY to the proxy even when the SUBSCRIBE haven't been received. I can configure a user in sip.conf that works: [az5134939706] type=friend host=xxx.xxx.xxx.xxx (IP of proxy) port=5060 nat=no mailbox=1234 at customer subscribemwi=no
2008 Feb 19
1
Problem with sync files when no dir in the destin
Hi i'm a new user but rsync is easy and a great tool I have a folder caled source and a folder caled destini, like this + Source |_ FolderA |____ File1 |____ File2 + Destini I use this comando to sync only File 1 rsync -a Souce/FolderA/File1 Destini it's copy the File 1 to Destini but i would like who rsync create te Folder A in the destini and put the File 1 inside Then. I read
2010 Mar 11
2
logistic model diagnostics residuals.lrm {design}, residuals()
I am interested in a model diagnostic for logistic regression which is normally distributed (much like the residuals in linear regression with are ~ N(0,variance unknown). My understanding is that most (all?) of the residuals returned by residuals.lrm {design} either don't have a well defined distribution or are distributed as Chi-Square. Have I overlooked a residual measure or would it be
2004 Sep 09
1
Blom's approximation to rankits?
Hello, My name is Lisa and I'm a statistician at Princess Margare Hospital. I wonder if there is any function in R that calculate the Normal rankits based on Blom's approximation? Thank you very much Lisa Wang Msc. Princess Margaret hospital Toronto, Ca
2011 Sep 30
0
Difficutlies with lp port
Hello, I'm using libvirt on debian as host and Windows XP Home as guest. I would like to pass the /dev/parport0 to XP to attach a printer. I use virt-manager. When I add a parallel port as a "dev" type I got this conf file: .... <parallel type='dev'> <source path='/dev/parport0'/> <target port='0'/> </parallel> ....
2006 Dec 05
1
using R for survival analysis
Thank you to all who made very helpful suggestions to get started with R. Duncan Murdoch raised an excellent question, asking about my background and reason for using R. I'm an epidemiologist, applying the marginal structural models approach (inverse probability of treatment weights) in a Cox proportional hazards analysis. The statistical program which I had been using does not have
2018 Jan 15
1
Source level code transformation V.S. IR-level code transformation
Thanks Weiren! My goal is to transform the code automatically by doing some code analysis, instead of rewriting it manually. To do this source level auto transformation, do you have any suggestions on what tool to use? Thanks again!! On Mon, Jan 15, 2018 at 04:25 陳韋任 via llvm-dev <llvm-dev at lists.llvm.org> wrote: > 2018-01-15 9:36 GMT+08:00 Linchuan Chen via llvm-dev <
2005 Apr 26
0
[LLVMdev] How to avoid this transformation
On Mon, 25 Apr 2005, Ricardo wrote: > I am trying to compile a program to be used for Pool Allocation. The program tries to allocate > certain number of nodes inside a function that is called by main. The problem is that llvm-gcc > insists in "optimize" the function so that certain number of nodes are created in main and the > rest are created inside the original function. In
2018 Jan 15
0
Source level code transformation V.S. IR-level code transformation
2018-01-15 9:36 GMT+08:00 Linchuan Chen via llvm-dev < llvm-dev at lists.llvm.org>: > Dear all, > I'm working on a simple code transformation problem that can be > described as below: > > for a C++ loop: > > *for (int i = 0; i < N; ++i) {* > * a = M[i] + b;* > * }* > > I want to transform it to: > > *int A[4]; *
2009 Feb 06
1
Log transformation and -Inf values for use in glm()
Hello, I am writing regarding log transformation of data in a single matrix column, and subsequent use of these data in a glm model fit. I have a data matrix in which I am using the log function to transform the values. This transformation results in -Inf values in some places, though. I then receive an error when this matrix is used in the glm function, and would like to know this
2018 Jan 15
3
Source level code transformation V.S. IR-level code transformation
Dear all, I'm working on a simple code transformation problem that can be described as below: for a C++ loop: *for (int i = 0; i < N; ++i) {* * a = M[i] + b;* * }* I want to transform it to: *int A[4]; * * for (int i = 0; i < N; ++i) {* * A[0] = M[i] + b;* * A[1] = M[i] + b;* * A[2] = M[i] + b;* * A[3] = M[i] + b;* *
2010 Jul 20
1
Transformation of Y changes the 'lm' object?
Hi R, This is a problem, which I have tried to present in a simple way: Let, x1=1:10 x2=2:11 y=2+3*x1 lm_obj=lm(y~x1+x2) lm_obj step(lm_obj) # Step function for the first time y=y^0.1 lm_obj step(lm_obj) #Step function after a transformation on Y, but 'lm_obj' is not modified. The two step function behave differently. The first one is before the
2009 Dec 31
0
[LLVMdev] Problems of source to source transformation of LLVM
Nobody give comments on this? Is the source to source transformation of LLVM robust enough? Thanks in advance. Shengmei _____ Problems of source to source transformation of LLVM Hi, I did experiments of the source transformation of LLVM on SPEC2000 C programs. But I found most benchmarks can't be transformed from source to source successfully. The steps are as
2013 Feb 08
0
[LLVMdev] llvm metadata transformation pass
Hello ! I have a toolchain of two passes. First one, is a transformation pass that should add metadata to some structures (instructions/variables) and the second pass is an analyzing pass which needs to access the added metadata. The problem is with my adding metadata transformation pass. There might be two problems(or both): First, maybe I don't add correctly metadata.
2013 Apr 06
1
Fw: Reversing data transformation
From: aguitatierra@hotmail.com Sent: Friday, April 05, 2013 11:47 PM To: r-help@r-project.org ; R Help Subject: Reversing data transformation Hi everybody, I would be very grateful if you could give me your thoughts on the following issue. I need to perform Box-Cox (bcPower€) transformation on my data. To do this, I calculated lambda using the function '€powerTransform'€.
2012 Dec 25
1
Sampling data without having infinite numbers after diong a transformation
Hello R-helpers.. I want to ask about how I can sample data sets without having the infinite numbers coming out. For example, set.seed(1234) a<-rnorm(15,0,1) b<-rnorm(15,0,1) c<-rnorm(15,0,1) d<-rnorm(15,0,36) After come out with the sample, I need to do a transformation (by Hoaglin, 1985) for each data set. Actually I need to measure the skewness and kurtosis, that's why I