Displaying 20 results from an estimated 9000 matches similar to: "Output of dovecot -a not sorted"
2012 Aug 15
2
sample() from (un-)sorted vectors
Hello,
Vector y is an alphabetically sorted version of vector x. Will both
samples, X and Y, be "absolutely" random or will they have systematic
differences? And: Should I sort or shuffle a vector before sampling?
Thank you, *S*
x <- as.factor(LETTERS[sequence(10:1)])
y <- sort(x)
X <- sample(x, 5)
Y <- sample(y, 5)
--
Sascha Vieweg, saschaview at gmail.com
2003 Jul 16
5
Sorting a data frame
Hi there R-Helpers,
Does anyone know if it is possible to sort a dataframe?
I.e. Sort alphabetically column 1 ( which has some reocurring elements) then
sort alphabetically column2 but keeping the order of column 1 constant;
much the same way that the sort function works in Excel.
Regards,
Wayne
Dr Wayne R. Jones
Statistician / Research Analyst
KSS Group plc
St James's Buildings
79
2008 Oct 18
2
sorting matrix output alphabetically
Hello,
I have been using the TM package to create a TermDocMatrix, which I
have saved as a matrix so that I can view word frequencies. Below is
a section of the code that I have used and an excerpt of the output:
What I wanted to be able to do is to view the output alphabetically -
rather than the results being sorted by frequency as below, that an
alphabetical list would be generated. This
2008 May 22
4
Sort output of dovecot -n alphabetically?
Is there a way? Postfix does this by default, and it makes it much less
likely to miss/overlook a setting...
If there is no way, any chance to modify it so that it does?
Thanks for dovecot! Really looking forward to 1.1 release!
--
Best regards,
Charles
2010 Aug 27
3
Sorting groups in bwplot chart
Hi all,
I am just curious how to sort the groups in a categorical box plot chart
bwplot
here is the example:
d<-data.frame(sample(rep(month.abb,20), 100), runif(100,1,10));
colnames(d) <- c("Month", "Value");
bwplot(d$Month ~ d$Value);
as you can see Months are not sorted alphabetically. Does anybody know ho to
sort those on the chart level?
Thank you
Jan
2002 Nov 21
4
Mixing text and graphics in PDF
Is there an easy way to "sink" text output to a pdf file using the pdf()
device?
Here's an email that describes setting up empty graphics plots and then
using the "text" command to put text on page:
http://www.r-project.org/nocvs/mail/r-help/2002/5598.html
I'm just looking for something a little more polished -- automatic page
breaks, line wrapping, etc.
Kevin
2009 Sep 03
2
ls -l output
OK, this should be an easy fix but I can't find it, and it's strictly
a cosmetic's issue.
on our older Gentoo systems if you do an ls -a it orders the results
with all the . files ordered alphabetically then all the non-hidden
files alphabetically. it also sorts with capitals first.
on the new Centos 5.3 systems ls -a returns all the files sorted
alphabetically with
2003 Sep 16
4
Samba + LDAP + Password Expiry = Almost working...
I've got a Samba 2.2.7a domain with an LDAP backend. It's been working for
nearly 3 months now without much bother.
By the way: Great work and thanks for all of the effort!
I have been missing one minor thing from the setup since I moved away from
NT 4: Password Expiration. In the past I have posted questions about this
on the list and I've gotten two answers: "Wait for
2011 Jan 06
2
Plotting Factors -- Sorting x-axis
Hello;
How do I plot these data in R without the Months being ordered alphabetically?
Months Prec
1 Jan 102.1
2 Feb 69.7
3 Mar 44.7
4 Apr 32.1
5 May 24.0
6 Jun 18.7
7 Jul 14.0
8 Aug 20.0
9 Sep 32.4
10 Oct 58.9
11 Nov 94.5
12 Dec 108.2
Eric
Eric Taylor, Air Quality Meteorologist, Health Protection,
Ministry of
2011 Oct 14
1
sorting dataframe by arbitrary order
This has been dogging me for a while. I've started making a lot of tables
via xtable so the way I want to sort things is not always in alphabetical or
numerical order.
As an example, consider I have a dataframe as follows
set.seed(100)
a <- data.frame(V1=sample(letters[1:4],100, replace=T),V2=1:100)
I know I can sort the columns first by V1 first and then by V2 by:
sorted.a <-
2010 May 12
2
sorting rows of dataframe
Hello:
I have a dataframe, where the first column in a month:
Month CATCHMENT_ med min max
1 Apr Alknda01 71.68080 11.9406600 196.2753
2 Apr Alknda02 69.44580 12.1065600 196.2753
3 Apr ArialKhan 39.89310 5.8598700 175.4433
4 Apr Arjun01 4.79652 0.0093336 55.7136
5 Apr Arjun02 4.79652 0.0093336 55.7136
6 Apr Arun01 52.42320 0.1571928
2019 Oct 08
2
[Bug 1369] New: ipset save|list -sorted sorts alphabetically instead of naturally
https://bugzilla.netfilter.org/show_bug.cgi?id=1369
Bug ID: 1369
Summary: ipset save|list -sorted sorts alphabetically instead
of naturally
Product: ipset
Version: unspecified
Hardware: x86_64
OS: All
Status: NEW
Severity: enhancement
Priority: P5
Component: default
2002 Dec 13
1
lattice barchart sorting and coloring
Hi List,
I am trying to produce a lattice barchart with text as labels. My data is
ordered, but the chart sorts x labels alphabetically.
Is there any way of forcing my ordering onto the chart?
Secondly, I wish to color groups of the bars based on a coded variable. Any
way of passing these codes onto colors on the chart (panel.superpose does
changes columns to dots).
Any suggestions
2006 May 20
3
Alphabetically sorted list pages + dynamic forms
Hey everyone,
I''m new to RoR - how can I get my database content filtered by alphabet?
Eg, on my php site now I use this format:
http://www.scenepointblank.com/reviews/index.php?page=B
How can I get this kind of functionality out of ruby?
Also, how could I go about making a multiple select box of authors, then
depending on how many you chose, the next page of the form displays a
2006 May 15
11
can you explain this benchmark?
I want to load about 14000 words (a subset of /usr/share/dict/words)
into a MySQL table in a migration:
class CreateWords < ActiveRecord::Migration
def self.up
create_table :words, :force => true do |t|
t.column :word, :string
end
say_with_time ''loading words...'' do
words = File.join(RAILS_ROOT, ''db'',
2013 Oct 30
1
ggplot2 question: keeping the order as in the input data
Hello!
I am using ggplot2 (see the code below) to plot the data in 'myplotdata'.
The first column of 'myplotdata' is called "att.levels" and contains
strings; the second column is called "WTP" and contains numeric values.
Notice - I use 'coord.flip()'
The command aes(x=att_levels, y=WTP), if I understand correctly, sorts
things alphabetically based on
2014 Jul 11
2
grouping list of objects in the help system
Dear list,
I've noticed for some packages the Index file in the help system has a
single list of objects (arranged alphabetically), while for other
packages this list is offered separately by letters... presumably when
the number of help objects is high.
Is there a way to manually split the help objects into categories?
For example, I would like to have an alphabetic order for the group
2004 Jul 27
1
library manual: documentation of funcs not alphabetically ordered
Hello everybody
I'm putting finishing touches to a library, and have noticed that the
.dvi file that R CMD check
creates does not sort the functions in alphabetical order.
I find this odd because I used the "tidy" routines in section 3.1 of
the R-exts manual, which produce R code in which the functions are
alphabetically ordered (and I performed R CMD check using the
2004 Aug 08
1
Sorting of filenames on samba shares
Hi,
I've the folloing setup:
2 Machines running w2k with the latest patches,
1 Linux machine running samba 3.0.5
If have on local drive, one mount from w2k to w2k and one from samba to w2k.
If i now do
mkdir a
mkdir b
mkdir z
mkdir c
on all of them, I get different Results from a "dir" or "tree" command.
In case of the local drive or the mount from w2k to w2k the
2004 Apr 15
1
sort boxplot to median
Dear guRus,
I'm stuck and really would appreciate some help. I've already crawled the net...
I want to do some Boxplot which are sorted by the median and not alphabetically.
What I did so far:
x <- subset(mydata, Verwalt.Doku==1, select=c(1, 2))
P <- plot(x[,1], x[,2], plot=F)
???sort(P$stats[3,])???
bxp(P, col="yellow", las=1, horizontal=T, xlab="Potential")
Of