search for: andra

Displaying 20 results from an estimated 225 matches for "andra".

Did you mean: andrea
2013 Jun 18
2
find closest value in a vector based on another vector values
...tract from "a" the two values that are closest to the values in "b", where the length of this vectors may change but b will allways be shorter than "a". So at the end based on this example I should have the result "f" as f <-c(8,32) appreciate the help, Andras
2018 Mar 15
2
Vary an equation using values from a sequence
...such, but this seems like overkill. I am wondering if there is a simple solution that would allow me to accomplish this. The code I am using is outlined below. Data <- c(1:10) #Data value <- seq(from = 0, to = 100 , by = 0.01) #Sequence Data - min(Data) + k # Equation Thanks, Jake Jake Andrae PhD Candidate Geology & Geophysics ? Sprigg Geobiology Centre Department of Earth Science School of Physical Sciences The University of Adelaide, AUSTRALIA 5005 Phone: 0407701565 Email: jake.andrae at adelaide.edu.au [[alternative HTML version deleted]]
2018 Mar 15
0
Vary an equation using values from a sequence
...omplexities that you have omitted. Cheers, Bert Bert Gunter "The trouble with having an open mind is that people keep coming along and sticking things into it." -- Opus (aka Berkeley Breathed in his "Bloom County" comic strip ) On Wed, Mar 14, 2018 at 9:14 PM, Jake William Andrae < jake.andrae at adelaide.edu.au> wrote: > Hi All, > > I have a vector of data on which I am operating. The equation with which I > want to operate on the vector has a value k. I want to run the equation and > output a new vector, each time replacing k with each value from th...
2012 Jun 24
7
Hlink node data for 2282618 already has path=...
So, like a lot of people, I am using --link-dest to do backups. My backup target is ext4 so with a hard link limit of 64K. I do end up with trying to create too many links at some point though and get the following sequence of events: rsync: link "/.snapshots/hourly.0/linux/usr/src/openwrt-r18617/build_dir/host/mpfr-2.4.1/tests/.deps/tui_sub.Po" =>
2012 Jan 06
3
How to fit my data with a distribution?
Dear All, I have a bunch of data points as follows: x  100 y  200 z  300 ... where 100, 200, 300 are the values. I would like to know the distribution of my data? how can I fit my data into a distribution? Thanks a lot, Andra [[alternative HTML version deleted]]
2012 Aug 31
3
Help on numerical object and ifelse function
...andle on it:   x <-c(1,2,3,4,5) y <-c(6,7,8,9,10) z <-15 w <-ifelse(z>14,x,y)   this will give me a value of 1 for w. What I would like to get is the whole string of x, so that w would become a numeric object of 5 characters exactly the same as x.   Apreciate the help,   Sincerely,   Andras [[alternative HTML version deleted]]
2012 Sep 02
3
Help on finding specific columns in matrix
...at? Would apreciate the help....   example:   a <-matrix(c(runif(500,10,15),runif(500,15,20),runif(500,20,25),runif(500,25,30)),ncol=4)   I would need to find and plot with a box percentile plot column 1, the column with the lowest mean, and column 4, the column with the highest mean   thanks,   Andras  [[alternative HTML version deleted]]
2001 Nov 08
4
win2k + >2GB files problem
...ag_hits=0 false_alarms=0 data=-1692471296 wrote 173 bytes read 56 bytes 152.67 bytes/sec total size is -1692471296 speedup is -7390704.35 File system is NTFS, the file size is ~2.6Gbs. For small files, everything seems to be OK. Any help would be appreciated. regards Horvath "raas" Andras
2011 Aug 26
2
How to find the accuracy of the predicted glm model with family = binomial (link = logit)
...predicted probabilities of assigning to my class one, then I would like to compare it with my vector y which does have the original labels. How should I change the probabilities into values of zero and 1 and then compare it with my vector y to find out about the accuracy of my prediction? Thanks, Andra
2012 Sep 12
2
Help on converting a Sweave document to PDF
...l also show up after conversion, which I would like not to happen. Is there a way to specify a command that I could place on the beggining and at the end of the R code that would allow R to recognize the area where my R code is and would ignor it when the data is converted?   Apreciate the help,   Andras [[alternative HTML version deleted]]
2012 Jun 07
4
"Re-creating" distributions
...lity distribution using only the mean, median and SD values availble without knowing the actual distribution type to begin with and/or the covariance matrix (for more then 1 data set)? All I usually have reported availble is mean, median and SD. I hope I made my question clear enough...   thanks,   Andras     [[alternative HTML version deleted]]
2013 Jan 25
5
Loop question?
...ct the combination of respective a and b values that would result in a calculated z that is between 15 and 20? In this case the a would be 1000 and the b would be 12 (other combinations are also possible), but how could I automatically find them? perhaps a loop?   Apreciate the help,   Sincerely,   Andras [[alternative HTML version deleted]]
2012 Dec 17
3
simplifying code
...ating the cp(1 to n) in a "single line" so that the run of the code will produce the vector  c(cp1,cp2,cp3,cp4)? At the end, I would like to have those values calculated "at once" as opposed to using a new command line to incorporate the different values for TIME1...   thanks,   Andras [[alternative HTML version deleted]]
2011 Aug 23
3
GLM question
...s as follows: final_str=NULL for (m in 1:100){ str = paste(x[,m],+,sep="") final_str= paste(final_str,str,sep="") } glm.fit = flm(y~final_str,family=binomial()) but final_str is treated as a string and it does not work. Could you please help me with fixing that? Thanks a lot, Andra
2017 Jun 16
2
"reverse" quantile function
...length(x)), q)$y" on the rows of a data frame using my example above? So if I cbind z and res,? df<-cbind(z,res) the "x" in your one liner would be the first 4 column values of each row and "q" is the last (5fth) column value of each row.. thanks again for all the help,?Andras Farkas On Friday, June 16, 2017 4:58 AM, peter dalgaard <pdalgd at gmail.com> wrote: It would depend on which one of the 9 quantile definitions you are using. The discontinuous ones aren't invertible, and the continuous ones won't be either, if there are ties in the data....
2012 Sep 08
3
Apply a function to columns of a matrix
...100),ncol=10) b <-matrix(c(2,4,6,8,10,12,14,16,18,20))   apply(a,2,function(b,a) sum(diff(b)*(a[-1]+a[-length(a)]))/2)   for some reason i get an error message: Error in FUN(newX[[, i], ...): argument "a" is missing with no default.   Any ideas of why that may be happening?   thanks,   Andras [[alternative HTML version deleted]]
2013 Mar 20
2
remove specific number of rows from a matrix
...,] 5 10 which tells us ideed, the code works well:-), but it is not what I need Instead, I wanted to remove row #1 adn row#2 from the matrix to get: [1,] 3 8 [2,] 4 9 [3,] 5 10  as the end result. Please provide your insights to solve this problem.  Any input would be greatly appreciated, thanks, Andras [[alternative HTML version deleted]]
2005 Aug 10
6
Hieraki + FCGI + Problem
...I try to run dispatch.fcgi from the command line, I got no fatal error, it just says, that has routing problems. Any ideas, what should I check? I''m not familiar with the FastCGI architecture, so I don''t know, if I should setup something per application, or not, etc. Bye, Andras ps: I''ve tried some other Rails applications, too, and - except Typo - it''s the same problem with FCGI.
2013 Mar 20
3
how to skip part of the code
...ate te value for f. In the code I am working with the value of e changes, and I would like to calculate d and f at all times when the value of e is greater then zero. If possible, I would like to do this without using the functions "ifelse" and "if else"   appreciate the help,   Andras [[alternative HTML version deleted]]
2006 Oct 04
2
speex-1.2beta1 AEC garbles up audio unless compiled with --enable-fixed-point
...with: http://www.surfnonstop.com/~bandit/speex/1.2beta1_AEC_garble/ The original recordings are in mic.raw and spk.raw. Jean-Marc Valin wrote: > You may have triggered an instability problem. Can you upload your files > somewhere so I can have a look at them? > > Jean-Marc > > Andras Kadinger a ?crit : > >> Greetings everyone, >> >> I was about to compare AEC performance between 1.1.12 and 1.2beta1 when >> I noticed something. >> >> If I configure (and compile) speex-1.1.12 with >> >> ./configure --enable-shared=no --enable...