search for: less

Displaying 20 results from an estimated 33065 matches for "less".

2015 Jun 08
2
less for CentOS6 with POSIX regex?
In article <ml1jnh$afr$1 at softins.softins.co.uk>, Tony Mountifield <tony at softins.co.uk> wrote: > When I started using CentOS 6 instead of CentOS 5, I discovered that > "less" no longer understood \< and \>, which I had been used to using > since almost forever. > > Eventually research revealed that in the Fedora version on which > RHEL 6 was based, "less" had been built with the PCRE regex library > instead of a POSIX one. So instea...
2012 May 31
14
How install libv8 (therubyracer) Windows 7
Hello, I have a problem when I try to add the gem therubyracer. I put in my prompt: bundle install, and this error appears: C:\rails\organily>bundle install Fetching gem metadata from https://rubygems.org/......... Using rake (0.9.2.2) Using i18n (0.6.0) Using multi_json (1.3.6) Using activesupport (3.2.3) Using builder (3.0.0) Using activemodel (3.2.3) Using erubis (2.7.0) Using journey
2015 Jun 08
1
less for CentOS6 with POSIX regex?
...06/09/2015 12:33 AM, tony at softins.co.uk (Tony Mountifield) wrote: >> In article <ml1jnh$afr$1 at softins.softins.co.uk>, >> Tony Mountifield <tony at softins.co.uk> wrote: >>> When I started using CentOS 6 instead of CentOS 5, I discovered that >>> "less" no longer understood \< and \>, which I had been used to using >>> since almost forever. >>> >>> Eventually research revealed that in the Fedora version on which >>> RHEL 6 was based, "less" had been built with the PCRE regex library >&gt...
2015 Jun 08
0
less for CentOS6 with POSIX regex?
On 06/09/2015 12:33 AM, tony at softins.co.uk (Tony Mountifield) wrote: > In article <ml1jnh$afr$1 at softins.softins.co.uk>, > Tony Mountifield <tony at softins.co.uk> wrote: >> When I started using CentOS 6 instead of CentOS 5, I discovered that >> "less" no longer understood \< and \>, which I had been used to using >> since almost forever. >> >> Eventually research revealed that in the Fedora version on which >> RHEL 6 was based, "less" had been built with the PCRE regex library >> instead of a P...
2007 May 18
3
{10,20,30}>={25,30,15}
Hi There, Using t.test to test hypothesis about which one is greater, A or B? where A={10,20,30},B={25,30,15}. My question is which of the following conclusions is right? #################hypothesis testing 1 h0: A greater than or equal to B h1: A less than B below is splus code A=c(10,20,30) B=c(25,30,15) t.test(c(10,20,30),c(25,30,15),alternative="less") output: p-value=0.3359 because p-value is not less than alpha (0.05), we cannot reject h0. so A greater than or equal to B. #################hypothesis testing 2 h0: A less tha...
1998 Oct 13
1
SuSe does not like more.
In R "help(package=pkg)" or "library(help=pkg)" seems to behave like 'more' or 'less' or something that looks like one of these. Under RedHat this behaves normally: at the end of help it reverts automatically to the R prompt '>'. In SuSe it doesn't jump back to the prompt automatically: I see something like "line 1/28 (end)" and then I have to type a &...
2006 Jun 29
4
re-direct to "more" or "less"
Dear list, sometimes my function generates too much data and shows them on screen, i cannot view first several lines until program ends and I have to scroll my mouse up to get them. Is there any re-direction function in R to pipeline outputs to "more" or "less" type functions? Thanks mike [[alternative HTML version deleted]]
2010 Apr 07
0
Help with manipulation of svytotal output
....74271 442.1516 549.4702 1017.50960 5 Quintile 5 - Least deprived At least 5 portions a day 191.65542 258.3255 1035.7763 964.20185 6 Quintile 1 - Most deprived At least 3 portions a day but less than 5 portions a day 1163.65176 812.2817 847.7915 821.97752 7 Quintile 2 At least 3 portions a day but less than 5 portions a day 854.41301 2038.1105 1908.4803 1632.98484 8...
2004 Feb 06
4
more or less pager
R-users, (forgive my return adres) I've been breaking my head why R---which i find fabulous, by the way---does not pipe interactive output through a pager (more or less), like it does with help(), or like GNU Octave does with arrays with more than terminal height rows. Maybe it is my installation (Debian/GNU Linux). Maybe it is my configuration, but i don't think so because with help() it works ## Default pager PAGER=${PAGER-'/usr/bin/less'} Bu...
2006 Mar 08
3
'less' for R?
Hi All, is there an equivalent of the Unix command 'less' (or 'more'), so I can look at what's inside a data.frame or a matrix without having it printed out on console? I am using R on Debian Linux and Mac OS 10.4.5 Cheers, F -- Federico C. F. Calboli Department of Epidemiology and Public Health Imperial College, St Mary's Campus...
1998 Dec 15
1
Use less instead of more
Hello, I would like to use "less" as pager instead of the default, "more". So I edited RHOME/bin/pager so that I can use less. Is it all right? Yusuke Uchiyama yusuke at kais.kyoto-u.ac.jp -.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.-.- r-help mailing list -- Read http://www.ci.tuwi...
2006 Dec 15
2
ks.test "greater" and "less"
Hello r-group I have a question to the ks.test. I would expect different values for less and greater between data1 and data2. Does anybody could explain my point of misunderstanding the function? data1<-c(8,12,43,70) data2<- c(70,43,12,8) ks.test(data1,"pnorm") ks.test(data1,"pnorm",alternative ="less") #expected < 0.001 ks.test(data1,&quot...
2005 Aug 02
0
less strange behavior
Have encountered a (rather minor but puzzling and annoying) problem with "less" that I can reproduce on multiple CentOS4 boxes. Only seems to be a problem for a root login on a VC. Here's the scenario: 1) Login as root on a VC. 2) Type "less /etc/printcap" or any other text file. 3) less hangs until Ctrl-C is typed, then displays the file. If a gzipped...
2010 Mar 12
2
Redirect/pipe output to less
I'm using R under Linux. Since the help function in R can use the program less to display text, I'd like to know if it is possible for a user to do the same. It would be very helpful to be able to view large objects (matrices/dataframes etc) using less. This is preferable to redirecting output to file or to clutter the workspace with too much output. I have tried to use f...
2010 Feb 12
2
[LLVMdev] [PATCH] Fix off-by-one errors in the doxygen documentation
...ways false (always folded) - FCMP_OEQ = 1, /// 0 0 0 1 True if ordered and equal - FCMP_OGT = 2, /// 0 0 1 0 True if ordered and greater than - FCMP_OGE = 3, /// 0 0 1 1 True if ordered and greater than or equal - FCMP_OLT = 4, /// 0 1 0 0 True if ordered and less than - FCMP_OLE = 5, /// 0 1 0 1 True if ordered and less than or equal - FCMP_ONE = 6, /// 0 1 1 0 True if ordered and operands are unequal - FCMP_ORD = 7, /// 0 1 1 1 True if ordered (no nans) - FCMP_UNO = 8, /// 1 0 0 0 True if unordered: isnan(X) | isnan(...
2008 Jul 10
2
Lattice: merged strips?
...he upper shingle within levels of that factor, as in: |___A___|___B___| |_X_|_Y_|_X_|_Y_| Mike -- Mike Lawrence Graduate Student, Department of Psychology, Dalhousie University www.memetic.ca "The road to wisdom? Well, it's plain and simple to express: Err and err and err again, but less and less and less." - Piet Hein
2005 Jul 08
2
removing factor level represented by less than x rows
In a number of different situations I'm trying to remove factor levels that are represented by less than a certain number of rows, e.g. if I had the dataset aa below and wanted to remove the species that are represented in less than 2 rows: data(iris) aa <- iris[1:101,] In this case, since I can see that the species virginica only has one row, I can write: table(aa$Species) setosa versicolo...
2013 Jul 21
3
exhaustive-model-search issue results in multi-gigabyte FLAC file
...eck if 32-bit accumulator is enough should be improved > instead if possible. Miroslav, I have committed an improvement on the above fix. https://git.xiph.org/?p=flac.git;a=commit;h=f34f31dac0032887887b5bbcb0944de055b757d0 that reverts to the use of a FLAC_uint32 accumulator for files of less than 24 bits per sample. I still have no proof that this overflow cannot occur for 16 bit files. Erik -- ---------------------------------------------------------------------- Erik de Castro Lopo http://www.mega-nerd.com/
2010 Jul 19
2
Grouping and stacking bar plot for categorical variables
Hi all, I have a series of cateogiral variables that look just like this: welfare=sample(c("less", "same", "more"), 1000, replace=TRUE) education=sample(c("less", "same", "more"), 1000, replace=TRUE) defence=sample(c("less", "same", "more"), 1000, replace=TRUE) egp=sample(c("salariat", "routine...
2005 Jan 26
0
Updated packages for Centos-3 x86_64 (xpdf,less)
New less and xpdf packages are available for CentOS-3 x86_64. Please refer to less: https://rhn.redhat.com/errata/RHSA-2005-068.html RPMS/less-378-12.x86_64.rpm SRPMS/less-378-12.src.rpm xpdf: https://rhn.redhat.com/errata/RHSA-2005-059.html RPMS/xpdf-2.02-9.5.x86_64.rpm SRPMS/xpdf-2.02-9.5.src.rpm To ap...