search for: c23

Displaying 20 results from an estimated 48 matches for "c23".

Did you mean: 23
2012 Oct 23
3
frequency
Hello, I have a data as follow: ID    Visit xa1 xa2 yb1 yc23 yb33   I want to look at frequency of visit for ID and create a new column as response .  For example my response would be 2 for x and 3 for y. I think I need to write a loop, but I don't know how. I really appreciate your help. Thanks a lot. Best,Farnoosh Sheikhi [[alternative HTML version de...
2025 Jan 15
1
Build error with gcc 15
...>> sys-std.c:1189:1: warning: ?noreturn? attribute ignored [-Wattributes] >> 1189 | void Rstd_CleanUp(SA_TYPE saveact, int status, int runLast) >> | ^~~~ >> sys-std.c:1189:1: error: expected identifier or ?(? before ?void? You failed to say that GCC 15 defaults to C23 (and they have not yet documented that). > > I've seen some references to this in the source code, so this may be fixed > in R devel. If this is the case, it would be great if you could provide a > patch that I can apply to v4.4.2 until the next R release (or maybe I > should j...
2011 Jun 26
2
Ordering a matrix based on cluster no
Hi All I have a symmetric matrix of genes ( 100x100 matrix). I also have a matrix (100x2) of two columns where column 1 has the gene names and column 2 has the cluster it belongs to (they are sorted and grouped based on the cluster no). I would like to order the rows and columns of the 100x 100 matrix such that the first n genes correspond to cluster 1 and next n genes correspond to cluster 2
2000 Feb 25
0
Summary: Partial correlation coefficients in R. Thanks everybody!
Hello all, here's a collection of answers I got on my question concerning partial correlation coefficients: Some people gave a simple formula for the three-variable-case, as did Dave Lucy: pcor <- function(v1, v2, v3) { c12 <- cor(v1, v2) c23 <- cor(v2, v3) c13 <- cor(v1, v3) partial <- (c12-(c13*c23))/(sqrt(1-(c13^2)) * sqrt(1-(c23^2))) return(partial) } The general algorithm was given by John Logsdon, among others: The partial correlation coefficients are the negative scaled off-diagonal inverse variance. So...
2018 Sep 03
2
[PATCH v3] ppc64le: Use -machine cap-htm=off unconditionally
Of course I mean state=off (not <htm state=on>) ... Rich.
2000 Feb 25
2
partial correlation coefficients in R?
Hello, after thorough searching of the R help files as well as S+-help, I'm coming to the list: Is there a possibility to compute partial correlation coefficients between multiple variables (correlation between two paired samples with the "effects of all other variables partialled out")? All I seem to find are the standard Pearson correlation coefficients (with cor()) and no clue
2007 Mar 10
3
long character string problem
...)A19*(X19*x1+X29*x2)+-1*sqrt(B19*(X19*x1+X29*x2)^2+C19)A110*(X110*x1+X210*x2)+1*sqrt(B110*(X110*x1+X210*x2)^2+C110)" > cum2 [1] "A21*(X11*x1+X21*x2)+1*sqrt(B21*(X11*x1+X21*x2)^2+C21)A22*(X12*x1+X22*x2)+1*sqrt(B22*(X12*x1+X22*x2)^2+C22)A23*(X13*x1+X23*x2)+-1*sqrt(B23*(X13*x1+X23*x2)^2+C23)A24*(X14*x1+X24*x2)+-1*sqrt(B24*(X14*x1+X24*x2)^2+C24)A25*(X15*x1+X25*x2)+1*sqrt(B25*(X15*x1+X25*x2)^2+C25)A26*(X16*x1+X26*x2)+1*sqrt(B26*(X16*x1+X26*x2)^2+C26)A27*(X17*x1+X27*x2)+1*sqrt(B27*(X17*x1+X27*x2)^2+C27)A28*(X18*x1+X28*x2)+1*sqrt(B28*(X18*x1+X28*x2)^2+C28)A29*(X19*x1+X29*x2)+-1*sqrt(B29*(...
2023 Feb 15
1
[libnbd PATCH v3 05/29] vector: (mostly) factor out DEFINE_VECTOR_EMPTY
...the "f" callback is "free": > > string_vector_iter (..., (void *) free); > > Casting "free" to (void*) is ugly. (Well-defined by POSIX, but still.) Tangentially related: casting function pointers in general may get harder as more compilers move towards C23 and its newer rules (see for example https://lists.gnu.org/archive/html/bug-gnulib/2023-02/msg00055.html or this gcc 13 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108694 which highlights some of the warnings that newer compilers will start warning us about). While this patch focuses on avoid...
2018 Oct 15
2
Frefox update from firefox-60.2.0-1.el7.centos.x86_64 to 60.2.1-1.el7.centos.x86_64 lost master password
...> > method mentioned. Do we restore the old key3.db file, have the user set > that variable, then start the new firefox? With that create a key4.db file > and use it from then on? > > It will be fixed when this is released: https://bugzilla.redhat.com/show_bug.cgi?id=1633932#c23 In the mean time, for CentOS-6 and CentOS-7 (x86_64, i386) .. there is a temporary unsigned build here: https://buildlogs.centos.org/c6-firefox60.x86_64/firefox/20181015143830/ https://buildlogs.centos.org/c7-firefox60.x86_64/firefox/20181015143830/ As soon as Red Hat officially releases the ot...
2025 Jan 15
1
Build error with gcc 15
Dear R Core, GCC 15 is already in Fedora rawhide, because it will be part of the next release, Fedora 42. R 4.4.2 fails to build with the following error [1]: > sys-std.c:1189:1: warning: ?noreturn? attribute ignored [-Wattributes] > 1189 | void Rstd_CleanUp(SA_TYPE saveact, int status, int runLast) > | ^~~~ > sys-std.c:1189:1: error: expected identifier or ?(? before ?void?
2005 Sep 23
1
Asterisk CMD MySQL
What version of asterisk do I need to be running for this to work? I have 1.0.9 running and when I try to install asterisk-addons from CVS I get app_addon_sql_mysql.c23:19: mysql.h: No such file or directory. So of course it fails to install that add-on. What am I missing? I can find info on how to use it, but not much on getting it working. Thanks Again Tim -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digi...
2018 Sep 03
3
[PATCH] ppc64le: Use -machine cap-htm=off unconditionally
Unfortunately I was not able to test this because I don't currently have access to a P9 machine. Rich.
1999 Aug 05
1
pairwise scatterplot matrix
...vs X4| |X4 vs X1|X4 vs X2|X4 vs X3| X4 | It is possible with this command (> pairs(X)) to draw a figure which both indicates the values of correlation coefficients and give the linear regressions of variables? Like this: | X1 | C12 | C13 | C14 | |X2 vs X1| X2 | C23 | C24 | |X3 vs X1|X3 vs X2| X3 | C34 | |X4 vs X1|X4 vs X2|X4 vs X3| X4 | Cij indicate the value of the correlation coefficient for the linear regression of the variable i with the variable j. i=1...4, j=1...4 Xi vs Xj indicate a plot(Xi,Xj). Have a nice day Jorge. -- +--...
2018 Sep 03
1
Re: [PATCH] ppc64le: Use -machine cap-htm=off unconditionally (RHBZ#1614948).
On Monday, 3 September 2018 10:09:07 CEST Richard W.M. Jones wrote: > See: > https://bugzilla.redhat.com/show_bug.cgi?id=1614948#c23 > > Thanks: David Gibson. > --- > lib/launch-direct.c | 3 +++ > lib/launch-libvirt.c | 10 ++++++++++ > 2 files changed, 13 insertions(+) > > diff --git a/lib/launch-direct.c b/lib/launch-direct.c > index 47e8f37de..94dd995c6 100644 > --- a/lib/launch-direct.c &g...
2009 Jul 15
1
Help with averaging
...quot;,"G1-C8", "G2-C9","G2-C10","G2-C11","G2-C12","G2-C13","G2-C14","G2-C15","G2-C16", "G3-C17","G3-C18","G3-C19","G3-C20","G3-C21","G3-C22","G3-C23", "G4-C24","G4-C25","G4-C26","G4-C27","G4-C28","G4-C29","G4-C30","G4-C31") write.csv(averagedResults, file = "Pr9549_averagedreplicates.csv", row.names = FALSE) #SCRIPT ENDS
2018 Sep 13
4
[PATCH v3] PCI: Reprogram bridge prefetch registers on resume
...pace during suspend/resume, but this register was being skipped because upon resume, it already has value 0 (the correct, pre-suspend value). Intel appear to have previously acknowledged this behaviour and the requirement to rewrite this register. https://bugzilla.kernel.org/show_bug.cgi?id=116851#c23 Based on that, rewrite the prefetch register values even when that appears unnecessary. We have confirmed this solution on all the affected models we have in-hands (X542UQ, UX533FD, X530UN, V272UN). Additionally, this solves an issue where r8169 MSI-X interrupts were broken after S3 suspend/resu...
2008 Sep 09
1
creating table of averages
..."b12" [13] "b13" "b21" "b31" "b32" "b33" "b41" [19] "b42" "c11" "c12" "c21" "c22" "c23" [25] "c31" "c32" "c33" "d11" "d12" "d13" [31] "d14" "d21" "d22" "d23" "d24" "d25"...
2023 Feb 22
2
[libnbd PATCH v3 05/29] vector: (mostly) factor out DEFINE_VECTOR_EMPTY
...(void *) free); > >>>> > >>>> Casting "free" to (void*) is ugly. (Well-defined by POSIX, but still.) > >>> > >>> Tangentially related: casting function pointers in general may get > >>> harder as more compilers move towards C23 and its newer rules (see for > >>> example > >>> https://lists.gnu.org/archive/html/bug-gnulib/2023-02/msg00055.html or > >>> this gcc 13 bug https://gcc.gnu.org/bugzilla/show_bug.cgi?id=108694 > >>> which highlights some of the warnings that newer co...
2011 Aug 22
3
Multiple regression in R - unstandardised coefficients are a different sign to standardised coefficients, is this correct?
Hello, I have a statistical problem that I am using R for, but I am not making sense of the results. I am trying to use multiple regression to explore which variables (weather conditions) have the greater effect on a local atmospheric variable. The data is taken from a database that has 20391 data points (Z1). A simplified version of the data I'm looking at is given below, but I have a
2018 Sep 12
3
[PATCH v2] PCI: Reprogram bridge prefetch registers on resume
...pace during suspend/resume, but this register was being skipped because upon resume, it already has value 0 (the correct, pre-suspend value). Intel appear to have previously acknowledged this behaviour and the requirement to rewrite this register. https://bugzilla.kernel.org/show_bug.cgi?id=116851#c23 Based on that, rewrite the prefetch register values even when that appears unnecessary. We have confirmed this solution on all the affected models we have in-hands (X542UQ, UX533FD, X530UN, V272UN). Additionally, this solves an issue where r8169 MSI-X interrupts were broken after S3 suspend/resu...