similar to: predict.lm if regression vector is longer than predicton vector

Displaying 20 results from an estimated 1000 matches similar to: "predict.lm if regression vector is longer than predicton vector"

2012 Sep 19
4
correlating matrices
Hi, thank you for taking the time and reading my question. My question is twofold: 1. I have several matrices with variables and one matrix with water levels. I want to predict the water level with the data in the other matrices. Basically, * mod<-lm(matrix1 ~ matrix2+matrix3)* ( What looks like a minus is meant to be the wiggly minus.) Of course I could dissemble the matrices and paste
2012 Nov 07
1
Excel Regression Function
Dear Frauke, good afternoon, Could you tell me which excel function didnt work for regression analysis and what excel version where you using? Best regards, Paul El 07/11/2012 11:55, "frauke" <fhoss@andrew.cmu.edu> escribió: > Hi David, hi Rui, > > thanks for your quick replies. I have replicated David's R results and > confirmed them with Minitab. Though
2012 Feb 27
2
export 3D array to .txt file
Hey, I have an array with the dimensions 200x6x200 and I want to save it in a textfile. I want to be able to reload the text file to get the same array again: new.array<-load(mytextfile.txt) or something similar. I was not able to figure out a way to do that with write.table without having to save 200 text files. Is there another way? Thank you! Frauke -- View this message in context:
2012 Mar 11
3
extracting data from unstructured (text?) file
Dear R community, I have the following problem I hoped you could help me with. My data is save in thousand of files with a weird extension containing for numbers and a z. For example *.1405z. With list.files I managed to load this data into R. It looks like this (the row numbers are not in the original file): 35 :LATEST STAGE 3.60 FT AT 730 AM CST ON 0102 36
2012 Feb 07
1
alternating element in url
Hey everybody, it would be really appreciate if you knew the solution to the following problem. I am trying to load data from the internet into R without having to save them. However, I need to acess a different website for each dataset. So I want to alternate an element in the URL. Eventually, I want to fill a 3 dimensional matrix/array where each slice is a two-dimensional matrix from the
2012 Nov 07
3
HELP! Excel and R give me totally different regression results using the exact same data
Hallo, I am totally confused why Excel and R give me totally different regression results for the data below. If you know the solution, please enlighten me. In Excel I used LINEST() and Data>Data Analysis>Regression and both (fortunately) gave the same result. The coefficients were: /b0=1.16, b1=0.957, b2=0.024, R2=0.0027, adjusted R2=-0.017/ In R I used
2008 Jun 03
8
How to move a samba PDC to a diffrent box
Hello List, i have got a samba pdc running based on the smbldap tools and Debian Sarge. Now we would like to move everything over to Ubuntu Hardy. Can i simply: - Create the same users and groups with the same id on Hardy - Move the files and profiles over by keeping their permissions (rsync -avzp ...) - Set the samba SID to be the old orginial one (i do not know how this could be done and if
2004 Aug 11
1
[OT] Survey about FS/OS developers
Sorry for any cross-posting! Hello, My name is Frauke Lehmann and I'm writing my master thesis about the social formation of free software/open source (FS/OS) developers. A questionnaire is one part of my research - besides interviews and observations. It would be really nice, if you supported my survey by filling in my questionnaire (takes 20-30 min). I understand FS/OS developers as
2015 Jun 16
2
[LLVMdev] Best way to get direct memory for intrinsics in tblgen?
> On Jun 15, 2015, at 7:05 AM, Ryan Taylor <ryta1203 at gmail.com> wrote: > > To be more specific: > > We have some operators that we are currently implementing as intrinsics, for example things like: abs, min, max, etc..... > > for some code: > > int a; > > int food() > { > return abs(a); > } > > the corresponding operator should
2004 Feb 03
1
S language
Hello I just received an email from Insightful, Inc. saying that they have purchased the S license from Lucent Technologies. Will this have any major impact on R or the future development of R? John Lewis [[alternative HTML version deleted]]
2011 Oct 05
2
converting 3D array to a data-frame (with coordinate-columns x, y, z)
Hi, I am still struggling with three dimensional arrays. Now I would like to convert a three dimensional array into a data-frame with the coordinate-columns: x, y, z and a value-column. And I definitely don't want to loop over every element, since this would be very resource intensive for the actual data-set. Are there any specific functions that are helpful for this task?
2024 Apr 18
1
Filelocking Issue in 4.18.11
Hi Felix, On 4/18/24 08:33, Stolte, Felix via samba wrote: > Is this a bug or maybe a misconfiguration? In the latter, which parameters could cause this? I guess the nodes end up using different combinations of dev/inode as primary key for the locking.tdb record. Probably because the device numbers differ on the nodes and you didn't fix this known issue with GPFS with the fileid VFS
2015 Jun 16
2
[LLVMdev] Replacing a Reg MachineOperand with a non-Reg MachineOperand?
I'm not sure I understand what your problem is, but are you calling the removeRegOperandFromUseList on the machine operand after changing it to GA? You have to call removeRegOperandFromUseList before changing the operand's type, as it expects a register operand. 2015-06-16 10:05 GMT-07:00 Ryan Taylor <ryta1203 at gmail.com>: > @Alex: Thanks. setOffset(0) eliminated any previous
2015 Jun 16
2
[LLVMdev] Replacing a Reg MachineOperand with a non-Reg MachineOperand?
Hey Ryan, You end with a large constant immediate offset value because the register operand stores the register id in a union together with the offset that's used by the global address operand. Just add 'setOffset(0)' to your change method and that should solve your problem. 2015-06-16 9:15 GMT-07:00 Ryan Taylor <ryta1203 at gmail.com>: > So I have this for
2015 Dec 29
3
Was not found in the schema 'msDS-SupportedEncryptionTypes'
Good afternoon! Had a samba 4 with a Windows 2003 network that is not over, I went up to the level of my domain / forest Forest level function: (Windows) 2008 R2 Domain function level: (Windows) 2008 R2 Lowest function level of the DC (Windows) 2008 R2 But it seems that Samba is not with all attributes of a Windows 2008. Even try to join another Samba error appears ERROR (ldb): uncaught
2000 Jul 28
2
Loop removal?
Dear all, I've got a quite large dataframe (stor) with rows subject and rt (reaction time). I would like to split the reaction times per subject into 6 bins of equal size. Right now, I'm using the following code: bindata <- function(rt) { bindata <- rep(-1,length(rt)) binwidth <- length(rt)/6 bindata[order(rt)[(0*binwidth)+1:(1*binwidth)]] <- 1
2013 Apr 24
0
[LLVMdev] [PATCH] Handle tied sub-operands in AsmMatcherEmitter
Hi Jim, > Thank you for looking at this. Apologies again for taking > unjustifiably long to get back to you. This is really good stuff and > I very much want to see this go in. I like it enough I’m going to > try to talk you into doing even more work on improving this code. ;) > > Fair warning up front: You’re digging into some pretty fundamental > problems in how the
2013 Apr 23
4
[LLVMdev] [PATCH] Handle tied sub-operands in AsmMatcherEmitter
Hi Ulrich, Thank you for looking at this. Apologies again for taking unjustifiably long to get back to you. This is really good stuff and I very much want to see this go in. I like it enough I’m going to try to talk you into doing even more work on improving this code. ;) Fair warning up front: You’re digging into some pretty fundamental problems in how the assemblers and code generators like to
2020 Oct 14
0
R-help Digest, Vol 212, Issue 12
Dear Frauke, Thank you very much for taking the time to respond. You explanation was very helpful, and I now have that part figured out! Best Wishes, Dan Frauke Message: 3 Date: Mon, 12 Oct 2020 08:33:44 +0200 (CEST) From: =?UTF-8?Q?Frauke_G=C3=BCnther?= <guenther at leibniz-bips.de> To: "r-help at r-project.org" <r-help at r-project.org> Cc: William Michels <wjm1
2008 Jul 03
3
problem with lm and predict - no predictions made
Hi I have a problem with lm and predict I have us [1] 2789.53 3128.43 3255.03 3536.68 3933.18 4220.25 4462.83 4739.48 [9] 5103.75 5484.35 5803.08 5995.93 6337.75 6657.40 7072.23 7397.65 [17] 7816.83 8304.33 8746.98 9268.43 9816.98 10127.95 10469.60 10960.75 [25] 11685.93 12433.93 13194.70 13843.83 us.p [1] 227.62 229.92 232.13 234.25 236.31 238.42 240.59 242.75 244.97