Displaying 20 results from an estimated 392 matches for "ouput".
Did you mean:
output
2010 Jul 30
2
Ouput several lines of cat
...ollowing format:
X XXX
X XX.XX
XXXX-XXXX ( XX.XX XXX )
I need to get the output of all these lines into a text file.
I tried to put a file name in the cat function. However the output file only
displays single line output.
Thanks
--
View this message in context: http://r.789695.n4.nabble.com/Ouput-several-lines-of-cat-tp2307900p2307900.html
Sent from the R help mailing list archive at Nabble.com.
2003 Jul 27
2
Ogg ouput using libvorbisfile
...d I've been trying to get the example code
(http://www.xiph.org/ogg/vorbis/doc/vorbisfile/example.html)for the
decoder using libvorbisfile to work. I think my main problem is output
to /dev/dsp. If I use the example where the only change I made were to
open a file instead of using stdin and I ouput to /dev/dsp after opening
it, I get a weird static noise.
Any idea what I'm doing wrong or not doing?
<code>
#include <stdio.h>
#include <stdlib.h>
#include <math.h>
#include "vorbis/codec.h"
#include "vorbis/vorbisfile.h"
char pcmout[4096];
in...
2006 Jul 03
2
could i change the ouput style on summary?
Dear friends,
summary() doesn't give a good ouput style,e.g.:
grass soiltem airtem gheight
humidity altitude
diluo :38 Min. :15.90 Min. :17.70 Min. : 8.00 Min. :
0.2360 high: 43
huanghuacai:32 1st Qu.:19.32 1st Qu.:22.60 1st Qu.:40.00 1st Qu.:
0.3190 low :119
hucao :46 Medi...
2020 May 23
2
Surpising behavior when using an active binding as loop index in R 4.0.0
...behavior starts here:
for(i in 2:3) print(i) # output [1] "set"
# NULL
# NULL
print(i) # output NULL
print(x) # output NULL
i <- 4 # output "set"
print(i) # ouput [1] 4
print(x) # ouput [1] 4
Regards
Thomas
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 833 bytes
Desc: Digitale Signatur von OpenPGP
URL: <https://stat.ethz.ch/pipermail/r-devel/attachmen...
2004 Aug 06
1
Good mp3-player with stdout-ouput for unix?
Hi,
as I am sending PCM-data over the stdin to ices2, i need a good mp3-player
wich runs at the console and is able to output pcm to stdout.
So far i tried mpg123 and xaudio, but each had problems. mpg123 wasn't able
to play some songs, particularely with varibale bitrate and xaudio played
some songs and afaik most mp3pro-shit in double speed, even if it's 44.1khz.
Does anyone know a
2006 Apr 26
1
Accessing Ouput from the Shell
Basically i am running input via rails into ffmpeg which is a shell
program. Is there a way i can take the output of the shell and store it
into a string? or any other form that i can manipulate.
andrew
p.s. i am trying to read the dimensions of a video file via ffmpeg and
use this value in my rails app.
--
Posted via http://www.ruby-forum.com/.
2008 Mar 17
1
Writing GLM/GEE Ouput to Text File
Hello,
How can one write the output of a GLM/GEE model to a text file, such that
the results appear in text file in the same (or similar) format they appear
in the R console? For instance, I have the following model:
Traitresult <- compar.gee(Y~X, data = data, family = "binomial", phy = tree,
scale.fix = TRUE, scale.value = 1)
How would I write "Traitresult" to a text
2010 Mar 03
1
Html/JavaScript/CSS code ouput in TextArea-- Best Ways
Hello:
What would be the best way to Output Code in TextArea for a UI
component?
The Rails App View is pure HTML and JavaScript.
1.render in text for controller action and the text is the code string.
The < and > etc can be passed as is in this mode.
2.Read a HTML Template File (containing JS and CSS references) in Public
directory(?) that needs to be substitute some variables that were
2008 Jun 07
0
[LLVMdev] C ouput pass or native binary
Recently I've been working on putting a little language together using the llvm toolset. I think I've wrapped my head around some of the beginner bits (and a big "thank you" for the kaleidoscope tutorial). What I'd like to do now is to take my Module* and output either a C file for native compilation, or just directly output a native binary.
I saw that llc can output C
2016 Jan 07
3
Permissions Problem on a share
On Thu, Jan 7, 2016 at 4:33 PM, Rowland penny <rpenny at samba.org> wrote:
>
> What does 'getent passwd smithy' return ?
>
> Rowland
>
no ouput.
2009 Dec 07
1
Output multiple files
Hello,
I want the ouput to take the name of the original file. I have the following code - but the problem is that the output overrides the original file which I desire not.
So given an input file called File1.txt, I want the ouput to be called File1.out.txt, or something along this line. I'm working with many files,...
2005 Oct 10
1
Writing to a file with fixed precision
Hi,
I'm trying to ouput to a filled with a fixed precision:
eg. if I have data x=c(1.0,1.4,2.0), I want to be able to ouput the following to a file:
1.00000000000000
1.40000000000000
2.00000000000000
I was wondering if there was a function to do this in R?
Thanks,
Richard
Richard Hedger
Département de Biologie
Université...
2009 Sep 11
3
how to do this?
...uot;=1:3, "b"=4:6, "c"=7:9)*2
So we have
> t(t(x))
[,1]
[1,] 1
[2,] 3
[3,] 2
And
> y
a b c
1 2 8 14
2 4 10 16
3 6 12 18
I would like to obtain a vector with number taken from the data.frame: x is needed as row index
With c(1,3,2), in this case the ouput should be
2
16
12
I've tried a little bit with apply, but unsuccessfully.
Thank you
2012 Sep 14
5
ruby server chrashes
Hello,
When I do rails server it chrashed with this ouput :
http://pastebin.com/DJ21qC5h
Anyone a idea what is the cause of this problem and how to solve this ?
Roelof
--
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...
2020 May 24
1
Surpising behavior when using an active binding as loop index in R 4.0.0
...> # NULL
> > # NULL
> >
> > print(i) # output NULL
> > print(x) # output NULL
> >
> > i <- 4 # output "set"
> > print(i) # ouput [1] 4
> > print(x) # ouput [1] 4
>
> ls()
> # Error in ls() :
> # Value of SET_STRING_ELT() must be a 'CHARSXP' not a 'NULL'
>
> Regards
> Thomas
> ______________________________________________
> R-devel at r-project.org mailing list...
2010 Feb 02
3
Generating a PDF using popen and wkhtmltopdf
As described on wkhtmltopdf Google group
(http://code.google.com/p/wkhtmltopdf/issues/detail?id=162), I have a
problem generating a PDF while using popen and wkhtmltopdf.
wkhtmltopdf takes HTML code as input and ouputs a PDF file. Here is what
I''m doing:
command = ''"C:\Program Files\wkhtmltopdf\wkhtmltopdf.exe" - - -q''
IO.popen(command, ''r+'') do |f|
# Writing the html previously rendered in a string
f.write(html_output)
f.close_wr...
2008 Feb 13
4
rolling sum (like in Rmetrics package)
...hing except Sum instead of Mean.) I imagine
someone has done this, I just can't find it anywhere.
Example:
x <- somevector #where x is 'n' entries long
#what I would like to do is:
x1 <- x[1:20]
output1 <- sum(x1)
x2 <- x[2:21]
output2 <- sum(x2)
x3 <- ...
ouput <- c(output1, output2, ...)
Thanks,
JV
--
View this message in context: http://www.nabble.com/rolling-sum-%28like-in-Rmetrics-package%29-tp15459848p15459848.html
Sent from the R help mailing list archive at Nabble.com.
2007 Mar 06
1
Obtaining figures with exactly placed points
...111 0 1111
And this is what it should be (drawn by Xfig itself):
$ cat Xfig.fig
#FIG 3.2
Landscape
Flush left
Inches
A4
100.00
Single
-2
1200 2
2 2 0 1 0 7 50 -1 -1 0.000 0 0 -1 0 0 5
0 0 1200 0 1200 1200 0 1200 0 0
The interesting part is the last line; 1200 is replaced by 1111 in the
R ouput. Why is the R ouput still scaled? Do I miss some graphic
parameter?
Any tip is appreciated,
marco
2008 Feb 05
2
Incomplete ouput with sink and split=TRUE
Dear List,
I am trying to get R's terminal output to a file and to the terminal
at the same time, so that I can walk through some tests and keep a log
concurrently. The function 'sink' with the option split=TRUE seems to
do just that. It works fine for most output but for objects of class
htest, the terminal output is incomplete (the lines are there but
empty). Here is an
2007 Aug 10
3
Using rcov and ouput to screen
I''d like to output my rcov data to the screen in ascii instead of
html...is that possible using the rake spec:rcov command?
Also, is there somewhere that will allow me to search the mail
archives...I''m pretty sure someone else has asked similar questions.
Thanks for the help.
Mike B.
----------------------------------------------------------------
This message was sent