Displaying 7 results from an estimated 7 matches for "__data__".
2008 Jun 19
2
Create Matrix from Loop of Vectors, Sort It and Pick Top-K
Hi,
I have the following dataset (simplified for example).
__DATA__
300.35 200.25 104.30
22.00 31.12 89.99
444.50 22.10 43.00
22.10 200.55 66.77
Now from that I wish to do the following:
1. Compute variance of each row
2. Pick top-2 row with highest variance
3. Store those selected rows for further processing
To achieve this, I tried to: a) read the table and c...
2008 Jun 16
1
Separator with " | " for read.table
Hi,
I have the following data file to be parsed and captured as a data frame:
__DATA__
#GDS_ID GENE_NAME GENE_DESCRIPTION GENE_FUNCTION
1007_s_at | DDR1 | discoidin domain receptor tyrosine kinase 1 | protein-coding
1053_at | RFC2 | replication factor C (activator 1) 2, 40kDa | protein-coding
117_at | HSPA6 | heat shock 70kDa protein 6 (HSP70B') | protein-coding
__END__
In part...
2009 Sep 17
1
Filling Empty Column with String in read.table
I have a data file that looks like this.
__DATA__
D7KAR5Z02F447V 176 G 0.22
D7KAR5Z02J3WLG 94 A 1.05 29
D7KAR5Z02F4K6L 198 a 0.13
D7KAR5Z02J4SYO 67 C 0.95 28
D7KAR5Z02J4SYO 83 C 1.01 29
D7KAR5Z02J4SYO 97 T 0.13
D7KAR5Z02J4SYO 166 A 0.94 27
I want the rows where the last column has no-entry to be filled
with &...
2008 Aug 05
1
About Creating a List by Parsing Text
Hi all,
I have the following data in which I want to parse and
store them in a list
__DATA__
> print(comp.ll)
[1] "\tGene 11340 211952_at RANBP5 k= 1 LL= -970.692 "
[2] "\tGene 11340 211952_at RANBP5 k= 2 LL= -965.35 "
[3] "\tGene 11340 211952_at RANBP5 k= 3 LL= -963.669 "
[4] "\tGene 12682 213301_x_at TRIM24 k= 1 LL= -948.527 &...
2004 Aug 06
1
Ogg vorbistest stream up and running
From: "Thomas Kirk" <thomas@arkena.com>
> On Fri, Jun 15, 2001 at 03:41:54PM +0200, Thomas Kirk wrote:
>
> > I'll update the playlist as i get around to it ;-)
>
> Ive updated the channel with new albums. So fare it has been rock
> stable :)
I've had this on in the office, and apart from some initial problems with
finding the right input plugin for
2011 Feb 11
1
[PATCH v2v] Add support for performing automated builds
...lib/Sys/VirtV2V.pm';
+while (<PM>) {
+ if (/\$Sys::VirtV2V::VERSION\s*=\s*"(.*)"/) {
+ $VERSION=$1;
+ }
+}
+
+local $/ = undef;
+$_ = <DATA>;
+s/\@VERSION\@/$VERSION/g;
+
+open SPEC, ">$ARGV[0]" or die "$!";
+print SPEC $_;
+close SPEC;
+__DATA__
+# Automatically generated by virt-v2v.spec.PL
+
+Name: virt-v2v
+Version: @VERSION@
+Release: 2%{?dist}%{?extra_release}
+Summary: Convert a virtual machine to run on KVM
+
+Group: Applications/System
+License: GPLv2+ and LGPLv2+
+URL: http...
2004 Aug 06
7
question on downsampling
Hi,
Maybe a bit off topic for this list, bt anyway.
I have received several feature requests for DarkIce to support
downsampling of the audio input before passing it to lame or ogg vorbis.
For example the audio read from the soundcard would be 44.1kHz, and lame
would get it at 22.05kHz.
I figure two ways of doing this:
1. For lame, one can specify the input and the desired mp3 sampling
rate,