similar to: formatting a list

Displaying 20 results from an estimated 8000 matches similar to: "formatting a list"

2006 Mar 08
5
data import problem
Dear All, I'm trying to read a text data file that contains several records separated by a blank line. Each record starts with a row that contains it's ID and the number of rows for the records (two columns), then the data table itself, e.g. 123 5 89.1791 1.1024 90.5735 1.1024 92.5666 1.1024 95.0725 1.1024 101.2070 1.1024 321 3 60.1601 1.1024 64.8023 1.1024 70.0593
2018 Apr 17
0
Why LLVM doesn't have debug information of function right parentheses?
I really wouldn't be sure this is the right direction to go anyway - as pointed out, there coudl be a return of a constant which would be a single instruction & it would make more sense to me to attribute that to the line where "return" is written, than where the closing brace is. I think this is, for my money, a legitimate difference in implementations between GCC and Clang -
2000 May 10
1
R and Java ? [forwarded]
This is of broader interest, and I'm not the expert.. ------- start of forwarded message ------- From: Cheryl J Fernandes <cferna3@uic.edu> To: maechler@stat.math.ethz.ch Subject: Re R and Java Date: Tue, 9 May 2000 13:54:35 -0500 (CDT) Hi Martin, I'm Cheryl Fernandes currently pursuing my Masters Of Computer Science at the university of Illinois, at Chicago. I have tried
2006 Oct 09
1
SAMBA + LDAP + TLS
Hi there guys, do not know if post this here or in openldap list, sorry if I disturb you. I configured samba+ldap as a PDC and byt now it's working fine, so, I decided to put some security to the stuff. The problem is that I coudl not make it work, here I what I've done. This is what netstat shows. tcp 0 0 0.0.0.0:389 0.0.0.0:* LISTEN tcp 0 0 0.0.0.0:636 0.0.0.0:* LISTEN tcp 0 0
2015 Aug 25
2
Issues with libcurl + HTTP status codes (eg. 403, 404)
Hi all, The following fails for me (on OS X, although I imagine it's the same on other platforms using libcurl): options(download.file.method = "libcurl") options(repos = c(CRAN = "https://cran.rstudio.com/", CRANextra = "http://www.stats.ox.ac.uk/pub/RWin")) install.packages("lattice") ## could be any package gives me: >
2018 Apr 17
1
Why LLVM doesn't have debug information of function right parentheses?
Remembering a discussion as to why we do this from a few years ago: (*makes note to start writing design decisions this way down somewhere*) I was in favor of the current method for a few reasons: a) ensuring that it would "always happen" that we had either a unified return block or a well propagated location onto return instructions seemed like it would be difficult to maintain and
2008 Sep 16
1
how to force Asterisk 1.4 to use soxmix
Hi, is there anybody who knows how to force Asterisk 1.4 to use soxmix instead of sox? Thank you. Giorgio
2015 Aug 25
3
Issues with libcurl + HTTP status codes (eg. 403, 404)
Hi Martin, Indeed it does (and I should have confirmed myself with R-patched and R-devel before posting...) Thanks, and sorry for the noise. Kevin On Tue, Aug 25, 2015, 13:11 Martin Morgan <mtmorgan at fredhutch.org> wrote: > On 08/25/2015 12:54 PM, Kevin Ushey wrote: > > Hi all, > > > > The following fails for me (on OS X, although I imagine it's the same >
2018 Apr 12
2
Why LLVM doesn't have debug information of function right parentheses?
Hi, On 12/04/2018 15:35, Frozen via llvm-dev wrote: > I added one attribute named EndLine in LLVM IR before. LLVM's part is > not hard, but will modify many places in Clang. I success for it, you > can try this way. > For loops, we use a range to keep track of the start and end of the loop for remarks: http://llvm.org/doxygen/classllvm_1_1Loop_1_1LocRange.html Maybe it would
2009 Jul 15
2
Spaces in a name
I am reading regressors from an excel file (I have no control over the file) and some of the element names have spaces: i.e. "Small Bank Aquired" but I have found that lm(SourceData ~ . - "Small Bank Aquired", mcReg) doesn't work (mcReg = modelCurrentRegressors) As they are toggles I have ran them through factor() to be treated propertly as 0 or 1 but due to the fact I
2015 Aug 25
1
Issues with libcurl + HTTP status codes (eg. 403, 404)
In fact, this does reproduce on R-devel: > options(download.file.method = "libcurl") > options(repos = c(CRAN = "https://cran.rstudio.com/", CRANextra = + "http://www.stats.ox.ac.uk/pub/RWin")) > install.packages("lattice") ## could be any package Installing package into ?/Users/kevinushey/Library/R/3.3/library? (as ?lib? is
2011 Aug 02
3
identifying weeks (dates) that certain days (dates) fall into
Hello! I have dates for the beginning of each week, e.g.: weekly<-data.frame(week=seq(as.Date("2010-04-01"), as.Date("2011-12-26"),by="week")) week # each week starts on a Monday I also have a vector of dates I am interested in, e.g.: july4<-as.Date(c("2010-07-04","2011-07-04")) I would like to flag the weeks in my weekly$week that
2007 Sep 21
2
text formatting
Dear all, Does R have any functions for C/Fortran style text formatting when a number needs to be output right-justified in a fixed length field? say '%2d %3d %5.3f' or like python .rjust(n) and .zfill(n) I can do it paste(), but it is very clumsy. Thank you very much Stephen
2009 Sep 17
3
generating unordered combinations
Hi, I am trying to generate all unordered combinations of a set of numbers / characters, and I can only find a (very) clumsy way of doing this using expand.grid. For example, all unordered combinations of the numbers 0, 1, 2 are: 0, 0, 0 0, 0, 1 0, 0, 2 0, 1, 1 0, 1, 2 0, 2, 2 1, 1, 1 1, 1, 2 1, 2, 2 2, 2, 2 (I have not included, for example, 1, 0, 0, since it is equivalent to 0, 0, 1). I have
2013 Mar 25
1
Newbie code to count runs of up or down moves
There are probably many mistakes with this code. I am used to coding in C with a debugger, so I am very new to coding in R without one and different syntax. My code in the upper left panel of R Studio isz<-c(3,1,4,5,2,1,0,3,5,8)zlength(z)y<-c(0,0,0,0,0,0,0,0,0,0)ylength(y)zdiff = diff(z)zdiffn<-length(zdiff)nx<-zdifff<-function(x) { for (k in 1:n){
2011 May 17
4
subsetting a list of dataframes
Hello All, I have a list of dataframes, and I need to subset it by keeping only those dataframes in the list that meet a certain criterion. Specifically, I need to generate a second list which only includes those dataframes whose number of rows is > 1. Could someone suggest how to do this? I have come close to what I need with loops and such, but there must be a less clumsy way... Many
2002 Jul 22
0
Influence Measures for .lme models
Many thanks to those who replied to my message regarding installation of the lattice package. I have now upgraded my version of R. I have a quick question: I am running mixed effects models using the lme command. I am wanting to assess the fit of these models using the usual plots including Cooks Distance plots. I have noticed from the help files that it is possible to run influence measures
2015 Apr 01
0
[CentOS-announce] Release for CentOS Linux 7 (1503 ) on x86_64
On 04/02/2015 03:29 AM, Lamar Owen wrote: > On 03/31/2015 11:11 PM, Peter wrote: >> Can you please point me to the centos-devel thread that discussed >> changing the iso naming convention from CentOS-7.1-1503-x86_64-DVD.iso >> to CentOS-7-x86_64-DVD-1503.iso? I must have missed it because I saw >> no mention of this change until today. > The first thread along these
2011 May 26
3
change function scope?
I'm still getting used to R's scoping. I've run into the following situation value=0 thefunction <- function() print( value ) somefunction <- function() { value=99; thefunction() } somefunction() now, I understand that somefunction() returns 0 because thefunction() was defined with value=0 in its parent envrionment, it dosent look at all in the environment of somefunction. My
2006 Jun 24
4
session alternatives
I have a web application that is getting larger all the time. There are now 3 separate models where I am storing the current find parameters in session hash and it''s beginning to seem to me that this might not be a good idea. Before I add another model to the mess - is there a better way? Do I have to create some table to store the current ''find'' criteria? It seems as