Displaying 20 results from an estimated 100 matches similar to: "tabstop in graphics"
2016 Apr 09
2
Note: no visible definition
On 4/9/16 10:54 AM, Dirk Eddelbuettel wrote:
> On 9 April 2016 at 10:28, Mick Jordan wrote:
> | Can someone explain a message of this form from an rscript execution:
> |
> | Note: no visible global function definition for 'foo'
> |
> |
> | This happens right at the start of execution. 'foo' is only executed in
> | a branch of an 'if' that is not
2016 Apr 09
2
Note: no visible definition
Can someone explain a message of this form from an rscript execution:
Note: no visible global function definition for 'foo'
This happens right at the start of execution. 'foo' is only executed in
a branch of an 'if' that is not reached with the particular arguments
passed to the script. If I source the script in a shell and run it I do
not get the message.
Mick
2016 Apr 09
0
Note: no visible definition
On 09/04/2016 2:55 PM, Mick Jordan wrote:
> On 4/9/16 10:54 AM, Dirk Eddelbuettel wrote:
>> On 9 April 2016 at 10:28, Mick Jordan wrote:
>> | Can someone explain a message of this form from an rscript execution:
>> |
>> | Note: no visible global function definition for 'foo'
>> |
>> |
>> | This happens right at the start of execution.
2009 Feb 26
3
elastic tabstops, proportional fonts, and more
nick said:
> http://nickgravgaard.com/elastictabstops/
exactly. thanks for writing it up, nick.
the only thing i'd add is the notion that
tables should be copyfit to the viewport.
if the viewport gives you plenty of room,
give the columns some breathing space.
if not, tighten them as much as needed.
***
> http://readown.googlecode.com/
cool. now how about an
2018 Jan 15
4
sum multiple csv files
Hi, I am pretty new to R and I would apreciatte very much your help to
solve my problem. I have 40 csv files that have the same structure, and I
want to merge them into a single data frame.
I already have load and combined all the cvs files into a large list, and I
created two
filenames <- list.files('data',full.names=TRUE)
All_data <- lapply(filenames,function(i){
###read cvs
2003 Jul 03
2
unlist
Hi
I have a list with several data.frames, all with the same number of
colunms but different number of rows, and I'd like to transform this
list into a single dataframe. I need to mimic an rbind of all dataframes
...
Transform doesn't seem to work :-(
Thanks
EJ
--
Ernesto Jardim <ernesto at ipimar.pt>
Bi?logo Marinho/Marine Biologist
IPIMAR - Instituto Nacional de Investiga??o
2007 May 25
2
xyplot: different scales accross rows, same scales within rows
Dear list members,
I would like to set up a multiple panel in xyplots, with the same scale
for all colunms in each row, but different accross rows.
relation="free" would set up all x or y scales free... which is not what
I want :-(
Is this possible?
Thank you in advance,
Best wishes,
Marta
2003 Aug 12
3
grep and gsub on backslash and quotes
The following code works, to gsub single quotes to double quotes:
line <- gsub("'", '"', line)
(that's a single quote within doubles then a double within singles if
your
viewer's font is not good).
But The R Language Manual tells me that
Quotes and other special characters within strings
are specified using escape sequences:
\' single quote
\"
2019 Jan 27
2
How does LLVM know where to resolve declared only functions?
> It's the linkers job to hook together functions and definitions that end up in the same binary. Your OS will then hook in functions from other binaries when your executable is loaded into memory.
How does it know whether it is a system function or a user-defined function?
It seems that user functions have higher priorities over system
functions as demonstrated by the following example.
2014 Apr 17
1
rgl rotations
Is there a way to change the viewpoint using view3d (or rgl.viewpoint)
with respect to
the image that currently appears rather than the perspective that rgl
thinks is the
default? For example, if I create an image and then perform what
should be a no-op:
rgl.viewpoint(userMatrix=rotationMatrix(0,1,0,0))
the image is rotated. Then I can perform rotations on the result
without surprises.
But I
2018 Jan 15
0
sum multiple csv files
Your message seems unclear, and as evidence the respondents are giving various answers. You should provide a small sample of input and output data as it would look in R to avoid this kind of thrashing about. See [1][2][3] for guidance. Note that you also really need to figure out how to make sure your email program sends plain text, because HTML formatting WILL be stripped by the mailing list
2012 Dec 18
2
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com> wrote:
> But its pretty easy to change the tabstop within the editor to make it
> readable.
>
True, in this case... The output is not trying to be intelligent in
the general case, just spitting out tabs. I agree that to replace
this, however, it would be best to look at some smart column-padded
formatting
2019 Jan 26
2
How does LLVM know where to resolve declared only functions?
Hi
In the generated .ll file, it may have something like this. How does
LLVM know where to look for the definition of printf? Is it documented
somewhere? Thanks.
declare i32 @printf(i8*, ...) #1
--
Regards,
Peng
2019 Jan 18
2
Is it possible to generate the IR representation with the original macro information?
Hi,
I use the following commands to compile the IR. But I don't see the
macro information in the .ll file. Is there a way to preserve the
macro information (print() in this case) for debugging purposes?
$ clang -std=gnu99 -g3 -flto -Wall -pedantic -c -o main.o main.c
$ clang main.o -flto -fuse-ld=gold '-Wl,-plugin-opt=save-temps' -o main.exe
$ llvm-dis main.exe.0.0.preopt.bc
/* vim:
2012 Dec 18
0
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
But its pretty easy to change the tabstop within the editor to make it
readable.
On Tue, Dec 18, 2012 at 1:01 PM, Eli Bendersky <eliben at google.com> wrote:
> On Tue, Dec 18, 2012 at 11:36 AM, Caldarale, Charles R
> <Chuck.Caldarale at unisys.com> wrote:
> >> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
> >> On Behalf Of Eli
2012 Dec 18
0
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 1:13 PM, Eli Bendersky <eliben at google.com> wrote:
> On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com>
> wrote:
> > But its pretty easy to change the tabstop within the editor to make it
> > readable.
> >
>
> True, in this case... The output is not trying to be intelligent in
> the general case, just
2012 Dec 18
2
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Tue, Dec 18, 2012 at 11:36 AM, Caldarale, Charles R
<Chuck.Caldarale at unisys.com> wrote:
>> From: llvmdev-bounces at cs.uiuc.edu [mailto:llvmdev-bounces at cs.uiuc.edu]
>> On Behalf Of Eli Bendersky
>> Subject: [LLVMdev] Getting rid of tabs in LLVM's assembly output?
>
>> Problem: I then get tabs in my tests, which are discouraged by LLVM's
>>
2016 Oct 18
2
Why stdin is required to be overwritten in SSH?
Hi SSH,
I have put the ssh command in `script.sh`, with the code:
~~~
#!/usr/bin/env bash
ssh -q server date
~~~
And I have one `main.sh` to call `script.sh` as below.
~~~
#!/usr/bin/env bash
# vim: set noexpandtab tabstop=2:
while read -r run
do
./script.sh
done < <(seq 10)
~~~
The `script.sh` can be called only once, say
~~~
$ ./main.sh
Tue Oct 18 12:26:05 CDT 2016
~~~
But 10 runs
2012 Dec 18
3
[LLVMdev] Getting rid of tabs in LLVM's assembly output?
On Dec 18, 2012, at 2:07 PM, Chandler Carruth <chandlerc at google.com> wrote:
> On Tue, Dec 18, 2012 at 1:13 PM, Eli Bendersky <eliben at google.com> wrote:
> On Tue, Dec 18, 2012 at 1:09 PM, Craig Topper <craig.topper at gmail.com> wrote:
> > But its pretty easy to change the tabstop within the editor to make it
> > readable.
> >
>
> True, in
2014 Feb 03
1
seq range argument
Hello dear developers,
I find myself often having the result of "range" oder "extendrange", which I want to create a sequence with.
But "seq" needs two seperate arguments "from" and "two".
Could an argument "range" be added?
Otherwise I will have to create an object with the range (may come from a longer calculation), index twice from