Displaying 20 results from an estimated 1181 matches for "descend".
2006 Aug 14
1
mtext uses the typographical descender to align text
<>
Hello
One sometimes (quite often really ) marvel at the choice of defaults in
R's graphic engine.
For some obscure reason, mtext uses the typographical descender (bottom
of letters) to align text. That is: "gG" will end up slightly higher
that "GG". Depending on the font, "Q" might end up higher than "O".
(for explanation of baseline & descender see:
http://www.paratype.com/help/term/terms.asp?code=88)
Exam...
2005 Nov 22
3
graphing help
Hello all,
Does anyone know how to make R graph the x-axis in descending order? I am all
set in creating a vertical bar chart using either the plot or the xychart (in
lattice), but I need the x-axis in descending order. I have tried resorting
the data but apparently R automatically graphs the x-axis in ascending order.
I have multiplied the data used for the x-axis b...
2000 Dec 14
1
Sort in descending order
Hi R users:
I want to know how can I easily sort in descending order a
whole data frame by one or several variables.
Thank you very much for your help.
Kenneth Cabrera
krcabrer at perseus.unalmed.edu.co
krcabrer at epm.net.co
Universidad Nacional de Colombia, Sede Medell?n
-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-
r-...
2004 Apr 20
2
Rank - Descending order
Dear All,
Is there any simple way to way to produce "rank", for a given
list, but in a descending order?
E.G:
x = list(a=c(1,5,2,4));
rank(x$a); produces 1,4,2,3
However I am looking for a way to generate (4,1,3,2).
It would be particularly nice if the proposed solution has all
the niceties of rank function (like NA handling and ties.method
functionality)
TIA
Manoj
2004 Dec 01
2
rank in descending order?
Hi,
Is there any simple solution to get ranks in descending order?
Example,
a <- c(10, 98, 98, 98, 99, 100)
r <- rank(a, ties.method="average")
produces
1 3 3 3 5 6
I would want this instead:
6 5 3 3 3 1
Note that reversing r doesn't work but in small examples.
Thanks,
-Jose
--
jquesada at andrew.cmu.edu Research associate
h...
2011 Aug 10
0
xapian enquire.set_docid_order(Xapian::Enquire::DESCENDING so slow!
i have 300 millions records and my search file like this , i want the newest 10 results that match my query , so i use boolean search and "enquire.set_docid_order(enquire.DESCENDING)" , but this method seems a little slow . when i remove "enquire.set_docid_order(enquire.DESCENDING)" it run much faster .
how can i fetch the newest 10 results as fast as possible?
search.py
#-*- coding: utf-8 -*-
import xapian
import sys,time
t1 = time.time()
db_path = s...
1999 Jan 19
0
"don't descend"
What is the intended implementation of "don't descend".
a) treat all files that are in the "don't descend hierarchy as "no such file"
(or equivelent)
or
b) disable opendir() on "don't descent directories", but allow (for example)
stats on files that are in the "don't descend directories"
I...
2011 Feb 01
1
Question regarding "zfs snapshot -r"
Hello All,
I have two questions related to "zfs snapshot -r"
1. When "zfs snapshot -r tank at today" command is issued, does it creates
snapshots for all the descendent file systems at the same moment? I mean to
say if the command is issued at 10:20:35 PM, does the creation time of all
the snapshots for descendent file systems are same?
2. Say, tank has around 5000 descendent file systems and "zfs snapshot -r
tank at today" takes around 10 seconds to...
2002 Mar 29
2
order()
Hi,
In the order() help file, there is an example like:
a <- c(4, 3, 2, NA, 1)
b <- c(4, NA, 2, 7, 1)
z <- cbind(a, b)
(o <- order(a, b)); z[o, ]
How can I do something like "order a in ascending order, b in descending
order"? And say I have a third vector c, and I'd like to add this to the
previous condition "a ascending, b descending, c descending". How can I
do this?
Thanks,
Ko-Kang Wang
------------------------------------------------------------------------------
Ko-Kang Kevin Wang...
2002 Jan 18
3
Should dots be used in generic functions?
When writing generic functions, should "..." arguments be routinely
used?
The Writing R Extensions manual says that if it is used, all
descendant methods must use it too. In most cases in the R library
source, the generic has the dots, often documented as parameters for
the descendants (e.g. profile does this). In the case of profile, the
descendants declare the dots, but don't make use of them.
Duncan Murdoch
-.-.-.-.-.-.-.-.-.-....
2006 Dec 30
0
[812] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Added find_window and descendants methods
...:#dfd;text-decoration:none;display:block;padding:0 10px;}
#patch del {background:#fdd;text-decoration:none;display:block;padding:0 10px;}
#patch .lines, .info {color:#888;background:#fff;}
--></style>
<title>[812] trunk/wxsugar/lib/wx_sugar/wx_classes/window.rb: Added find_window and descendants methods</title>
</head>
<body>
<div id="msg">
<dl>
<dt>Revision</dt> <dd>812</dd>
<dt>Author</dt> <dd>brokentoy</dd>
<dt>Date</dt> <dd>2006-12-30 11:50:02 -0500 (Sat, 30 Dec 2006)</dd&g...
2018 Jun 27
0
[PATCH] add more PHONY targets to $(PHONY)
...s/Kbuild.install
index 8af569777cc3..bafd42328ddb 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -14,7 +14,7 @@
SHLIBDIR = /lib
# First rule
-.PHONY: __install install-rule
+PHONY := __install install-rule
__install:
# Install commands
@@ -64,7 +64,7 @@ else
endif
# Descending
-.PHONY: $(subdir-)
+PHONY += $(subdir-)
$(subdir-):
$(Q)$(MAKE) KLIBC_INSTALL=1 \
-f $(srctree)/scripts/Kbuild.install obj=$@
@@ -84,7 +84,7 @@ else
# 1) Create directories, install headers and man pages
# 2) Tell that we now install binaries
# 3) Install binaries by descend...
2006 Mar 16
3
How to paginate in descending order?
How can I paginate a set of fields in descending order based on their
created_on date?
For example, in a blog app, you want the very first entry on the first
page to be the most recent.
I see that paginate has an :order parameter, but I don''t see any way of
changing the direction of the order.
Thanks,
Jeff Coleman
--
Posted vi...
2008 Dec 24
1
ggplot2's qplot() not rendering title descender
On my machine (Mac OS 10.5.6, R 2.8.1) the following plot is drawn such that
a substantial portion of the descender of the title is covered by the plot:
library(ggplot2)
qplot(x=1:10,y=1:10,main='p q j g')
--
Mike Lawrence
Graduate Student
Department of Psychology
Dalhousie University
www.thatmike.com
Looking to arrange a meeting? Do so at:
http://www.timetomeet.info/with/mike/
~ Certainty is folly...
2006 Sep 05
1
-x tries to descend into FUSE filesystems
Hi!
I've noticed that an "rsync -avx . host:/test" tries to descend into a
FUSE filesystem (on the origin/sending side). This is at least true when
the FUSE is mounted by somebody else.
I came accross this while my nightly backup choked on this with
"Permission denied" at the mount point.
FUSE is a mount subsystem in Linux that enables userspace filesys...
2019 Jan 18
0
[klibc:master] add more PHONY targets to $(PHONY)
...l b/scripts/Kbuild.install
index 8af5697..bafd423 100644
--- a/scripts/Kbuild.install
+++ b/scripts/Kbuild.install
@@ -14,7 +14,7 @@
SHLIBDIR = /lib
# First rule
-.PHONY: __install install-rule
+PHONY := __install install-rule
__install:
# Install commands
@@ -64,7 +64,7 @@ else
endif
# Descending
-.PHONY: $(subdir-)
+PHONY += $(subdir-)
$(subdir-):
$(Q)$(MAKE) KLIBC_INSTALL=1 \
-f $(srctree)/scripts/Kbuild.install obj=$@
@@ -84,7 +84,7 @@ else
# 1) Create directories, install headers and man pages
# 2) Tell that we now install binaries
# 3) Install binaries by descend...
2010 Dec 30
1
Sorting data.frame datewise in a descending order
...31/2010 100 52
6 6/30/2010 96 87
7 7/31/2010 18 17
8 8/31/2010 21 13
9 9/30/2010 10 10
10 10/31/2010 76 56
11 11/30/2010 101 87
12 12/28/2010 81 14
I need to sort this data in a DESCENDING order based on a date. I.e. I need to have
date total newspapers
12/28/2010 81 14
11/30/2010 101 87
10/31/2010 76 56
.................................
..................................
1/...
2006 Apr 17
4
R debugging options
...alls many other user-written
functions that are also in myfunctions.R.
I only want to debug the R scripts. I do not need to get into the code of R
itself. I would like to be able to:
- see the source as I am debugging
- execute line-by-line
- see and modify variables
- have the option to either descend into function calls, or not
- have the option to either descend into loops, or not
Maybe this is asking too much but I thought I would lay out my dreams and then
you can tell me what is really possible.
Thanks,
Larry Howe
2006 May 09
1
Session mgmt. bug - ActiveRecord & MemoryStore session store
Windows XP Pro
Rails 1.1.2
I need some help verifying this behavior that I''m seeing.
BUG: Objects in session which are descendants of ActiveRecord::Base lose
attributes on subsequent requests when using CGI::Session::MemoryStore.
TO REPRODUCE:
0) Set up MemoryStore as the session database manager in the appropriate
environment.rb file in config
1) Create a model object X that descends from ActiveRecord::Base
2) Add an...
2006 Oct 15
3
sort question in a dataset?
...les in the dataset,
i thought sort could do it , but failed.
e.g.
x <- c(2, 9, 18, 3, 2)
y<-c(2,5.6,5,9,8)
z<-c(21,5,5,19,7)
a<-cbind(x,y,z)
a
x y z
[1,] 2 2.0 21
[2,] 9 5.6 5
[3,] 18 5.0 5
[4,] 3 9.0 19
[5,] 2 8.0 7
I want to sort dataset a according to ascending x and descending y, How to
accomplish it?
BTW, sort(a$x) can't works and it shows"null", why is it?
Any suggestions are welcome!
--
With Kind Regards,
oooO:::::::::
(..):::::::::
:\.(:::Oooo::
::\_)::(..)::
:::::::)./:::
::::::(_/::::
:::::::::::::
[*******************************************...