search for: parantheses

Displaying 20 results from an estimated 30 matches for "parantheses".

2011 May 11
1
Parantheses highlighting
Dear list, is it just me or is everybody experiencing this? Since the upgrade to R 2.13.0 on my Mac (OS X 10.6.7, R GUI 1.40 (5751)) the highlighting of matching parantheses doesn't work the way it used to. It doesn't highlight the matching parantheses while typing, but it still does while scrolling over it with the cursor with the arrow keys. This is quite inconvenient since I have to go back after each bracket if I want to know which one's the matching br...
2013 Feb 05
1
maximum amount of lines of code to be copy pasted to R console
Dear list members, is there any maximum amount of lines of code that can be copy pasted into the R console? Or some maximum amount of levels of nested parantheses? Whenever I copy paste some big chunk of code into the R console I get errors of missing parantheses etc. even though the parantheses are balanced (i.e. the code runs when run via source or inside some function). Cheers Jannis
2010 Jul 20
2
square brackets in expression in plots
Dears, do you know whether it is possible to include any square parantheses (brackets) in an expression to use it as an axis label? e.g. I would like to have a label like (with the sub and superscripts correct): "speed [m s^-1]" I know how to combine an expression with text via paste, but as I run soimething like: a='m*s^{-1}' plot(1:10,main=parse(tex...
2015 Jul 13
3
[LLVMdev] Documentation of bitcasts in calls
...ntation, but did not find anything about such nested bitcasts within calls. What is the exact syntax and semantics (while I can guess the latter, especially the former is interesting for me when building a parser for LLVM IR) for such instructions and/or where is this documented? In particular, the parantheses around the arguments of the bitcast are confusing me. Alternatively, is there a way to tell clang not to inline such bitcasts, but have them in a separate instruction before and use the result in the call? Best regards, Thomas -- Thomas Ströder mailto:stroeder at informatik.rwth-aach...
2010 Feb 18
2
Error message when using error.bars(x,add=TRUE)
...nstruct notched boxplots and got quite ugly results for some of the boxplots. The notches are often larger then the hinges which resulted in weird looking edges (even though I`m using a log-boxplot). To avoid this problem I thought about using "normal" log-boxplots and adding some kind of parantheses for showing the confidence interval. I found an option to do this with the help of the package "psych". It works beautifully for sth like that: x <- replicate(20,rnorm(50)) boxplot(x,notch=TRUE,main="Notched boxplot with error bars") error.bars(x,add=TRUE) abline(h=0) I tri...
2008 Apr 11
4
Format regression result summary
...7.759e-06 However, my wish is the output to have a format like: Estimate (Intercept) 3.750367*** (0.172345) Var1 -0.002334 (0.009342) Var2 0.012551* (0.005927) Etc. so that the standard errors are in parantheses below the estimates. Next to the estimates should be the * indicating significance. I thought that should go by accessing the elements in the summary object, yet, I got started and figured that is quite complicated. Is there a quick and dirty way? Basically I want the same print-out as the summ...
2003 Feb 17
4
installation of RODBC
I have tried to install the RODBC package with the next command: > install.packages(("ORDBC"), (lib="usr/lib/R/library")) But it is failed. Can I get some information about the installation of this package anywhere? Best regards, Nader -------------------------------------------------------------- Zie ook/see also: http://www.knmi.nl/maildisclaimer.html
2005 Aug 22
1
An lgrind definition for the S language
...code in a particular programming language and prepares it for "pretty printing" in LaTeX. In my version the available language definitions are $ lgrind -s When specifying a language case is insignificant. You can use the name of the language, or, where available, one of the synonyms in parantheses. Thus the following are legal and mark Tcl/Tk, Pascal and Fortran input, respectively: lgrind -ltcl/tk ... lgrind -lpaSCAL ... lgrind -lf ... The list of languages currently available in your lgrindef file: Ada MLisp (Emacs Mock Lisp) Asm...
2010 Feb 19
8
Weird gsub behaviour
...ab123c ab123c a&123c <------------------- This I want to achieve using temporary variable >Exit code: 0 If I change str = ''\&123'' to str = "\&123" it works fine, but I get str from "match" function, so I cannot specify it manually within parantheses.... Is there any way to change string''s ''string'' to "string" behaviour??? -- You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to rubyonrails-talk-/JYPxA39Uh5TLH...
1997 Sep 01
1
R-alpha: old Rdoc 2 new Rdoc
...("Unknown Option!\n"); $max_parent = 0; $NP = "normal_parent"; $PN = "parent_normal"; $EOP = "escaped_opening_parent"; $ECP = "escaped_closing_parent"; $ID = "$NP\\d+$PN"; undef $/; $complete_text = <>; print stderr "Marking Parantheses ... " if $opt_debug; $text = mark_parents($complete_text); print stderr "done\n" if $opt_debug; print stderr "Searching logical blocks ... " if $opt_debug; $text =~ /TITLE($ID)/; $id = $1; @args = get_two_args($id); $text =~ s/TITLE$id(.*)$id/\\title\{$args[0]\}\{$args[...
2012 Nov 29
0
[LLVMdev] Getting Started
On Thu, Nov 29, 2012 at 9:34 PM, Joe Abbey <jabbey at arxan.com> wrote: > I've never written python... but here goes. This is an awesome idea! I have a shell script for the same purpose, but I didn't post it because it was not as 'user-friendly'. (And I suspect lots of other developers have similar scripts.) > print (msg) print does not need parentheses. >
2007 Sep 06
2
acts_as_ferret connection was refused
Hello, I tried to install the acts_as_ferret plugin: ruby script/plugin install svn://projects.jkraemer.net/acts_as_ferret/tags/stable/acts_as_ferret but I get the response svn: Can''t connect to host ''projects.jkraemer.net'': connection refused. Everything ok over there or do I need to use a different route? Thanks for your help! Jay Sanders -- Posted via
2005 Mar 21
1
menu() and commands assigned to choices ->break out a repeat loop so that the next code lines to be read
first:I'd like to have the choice between breaking out a repeat loop or continue it then: i'd would like my code after the end of my repeat loop not to be read unless I type 2 (to continue executing the content of my repeat loop) THAT'S THE PROBLEM Is there any way to go straight out of the loop (like a "goto" associated to a "label") or a pause like command to
2003 Nov 21
1
ssh code question
Hi, I have a question about the code for version openssh 3.7.1p1. In the file ssh.cc you address ssh_session2_setup in some way: channel_register_confirm(c->self, ssh_session2_setup); Do you address the function: static void ssh_session2_setup(int id, void * args) in the same file or is it something else you address? If it is that function please tell me why the ssh_session2_setup function
2006 Jun 21
0
AW: syntax error
Hi, > Does anyone know why this row: > exten => s,2,GotoIf($[${CALLERIDNAME:0:${LEN(${RGPREFIX})}} != > ${RGPREFIX}]?4:3) took me some squinting, but the parantheses seem correct - so I presume the Asterisk parser can't cope with that convoluted an expression (using a function within a variable, basically). Try putting LEN(${RGPREFIX}) into a separate variable first, then refer to it in your GotoIf in a second statement. Marc
1999 Sep 17
1
How do I force a browser election?
I can force a browser election with the Win98 command: net view /workgroup:workgroupname However, that does not work on NT (and I haven't tried it on W95). What I'd really like is a command from the Linux command line to force the election. I've looked everywhere and can't find it. For my purposes having preferred master=yes and restarting Samba is not an option. Does anyone
2012 May 24
1
quotes in Rscript -e through system
I figured out how to use quotes and parentheses when using Rscript -e (on a bash shell): Rscript -e write\(1,\"a.txt\"\) --> Question 1: why do the parentheses need to be escaped in the shell? (More a shell than an R question) Then I figured out how to use quotes and parentheses when calling Rscript through system: system('Rscript -e write\\(1,\\\'a.txt\\\'\\)')
2005 Sep 07
1
Lattice key seems to ignore the key list
I've never had this problem before and can't see what could be different from other times I've used keys with lattice. It appears that auto.key is being taken as TRUE when I specify a key list. The list I specify seems to be ignored. Where can I place a browser to figure out what is going on? Having made a list key.symbol from trellis.par.get, and specified a scales list and a
2005 Sep 05
1
RODBC and 64 bit
...de lines cc <- grep("char", tolower(as.character(cdata[, 6]))) if (length(cc)) data[, cc] <- paste("'", data[, cc], "'", sep = "") look up the columns with character data types from the database specifications and includes parantheses that are later necessary for the SQL query. This works fine as long as you are updating all database columns. However if you only update a subset this will identify the wrong columns in you data frame as being character. Something along the lines of cc <- grep("char", tolower(as.ch...
2012 Nov 29
3
[LLVMdev] Getting Started
On Nov 29, 2012, at 12:46 PM, Eli Bendersky <eliben at google.com> wrote: > On Thu, Nov 29, 2012 at 9:41 AM, Joe Abbey <jabbey at arxan.com> wrote: >> I know this process is well documented here >> http://llvm.org/docs/GettingStarted.html >> >> But man do I love scripting things: >> >> LLVM Getting Started (See