Displaying 20 results from an estimated 22 matches for "value4".
Did you mean:
value
2011 May 05
3
Alter a line in a file.
Hi all R users
Ive got a file that contains diffrent settings in the manor of:
setting1="value1"
setting2="value2"
setting3="value3"
setting4="value4"
.
.
.
What I want to do is open the file and change the value of a specific
setting
like wanna change setting4="value4" -> setting4="value5" and then save the
file again.
setting1="value1"
setting2="value2"
setting3="value3"
setting4=&quo...
2009 Sep 10
2
tranform a table?
...,
i'm new to R, so i hope you dont mind a fairly basic R question. we're
using R to manipulate the results of SQL queries and create an HTML output.
I'm starting with a table that looks essentially like this:
Name Field1 Field2
John value1 value2
Jane value3 value4
My table is stored as a dataframe. I'd like to efficiently produce an
output that iterates through each row, transposes it and outputs an HTML
table (one per row). like this:
Name: John
Field1: value1
Field2: value2
Name: Jane
Field1: value3
Field2: value4
I can accomplish this by looping...
2007 Jun 12
3
Read Windows-like .INI files into R data structure?
I need to process some datasets where the configuration information was
stored in .INI-like files, i.e., text files with sections like this:
[Section1]
var1=value1
var2=value2
[Section2]
A=value3
B=value4
...
>From Google and other searches I haven't found any package, or function
within a package, that reads .INI files into an R list, or other data
structure.
Any suggestions, or do I need to write my own?
efg
Earl F. Glynn
Stowers Institute for Medical Research
2009 Aug 10
1
manipulating text to generate different formulas to use in nls()
...y nls() depending on that
number.
For example, when there are two sinusoids:
> nls( y ~ mu + A1 * cos(2*pi*f1*x - P1) + A2 * cos(2*pi*f2*x - P2), data = some.xy.data,
start = list( mu=some.value0, A1=some.value1, P1=some.value2, A2=some.value3,
P2=some.value4, f1=some.value5, f2=some.value6 ) )
Adding a third sinusoid, the model and the starting parameters needed become:
> nls( y ~ mu + A1 * cos(2*pi*f1*x - P1) + A2 * cos(2*pi*f2*x - P2) + A3 * cos(2*pi*f3*x - P3),
data = some.xy.data, start = list( mu=some.value0, A1=some.value1,...
2007 Nov 23
1
what''s the best way to deal with class/inheritence
...xample)
--> currently it''s defined as a ''node site-globals { $var1="value3" }''
nodes/
"node xxx" statements, one by individual physical server.
--> currently it''s defined as a ''node xxxx inherits site-global { $var1="value4"; include bundle-yyyy }''
this is working quite well BUT for the variables parts.
I''m completely missing is how I can define at each level variables with inheritences in a GOOD way
- 1 classes/mail-gateway.pp -> classes defaults, very generic (but working) one...
2020 Aug 14
2
TDB database commands (TDB used by SAMBA)
...ant to store
basically 3 information:
IP address , Name, TimeStamp - where IP would be the KEY and
"NAME,TIMESTAMP" would be the VALUE.
I am using the tdbtool to insert/store data successfully (like the example
below)
tdbtool myfile.tdb store "key1" "value1,value2,value3,value4"
The problem is when I want to READ the information back. It brings
hexadecimal code in a strange format. (see below)
tdbtool myfile.tdb show "key1"
key 4 bytes
key1
data 27 bytes
[000] 76 61 6C 75 65 31 2C 76 61 6C 75 65 32 2C 76 61 value1,v alue2,va
[010] 6C 75 65 33 2C 76 61...
2007 Jun 06
2
lookup in CSV recipe
...might be useful.
I thought about adding it to the wiki, but thought I should check here
first.
# lookup items from a CSV file
# v0.1 - 2007/06/06
# Adrian Bridgett, Opsera Ltd.
# file in the format of:
# colname1, colname2, colname3,... (must be first line)
# key1, value2, value3,...
# key2, value4, value5
#
# lookup_csv(filename,key1,colname3) will then return value3
#
# TODO:
# proper CSV parsing (e.g. quoting)
# regexp on the value?
# return a supplied default if row not found?
# add Excel and Openoffice support
module Puppet::Parser::Functions
newfunction(:lookup_csv, :type => :rval...
2015 Oct 28
4
RFC: Supporting macros in LLVM debug info
...-----------------------------------------------------
1.
2.
3.
4. #undef M1
5. #define M1 NewValue1
--------------------------------------------------------------------------------------
myfile2.h:
--------------------------------------------------------------------------------------
1. #define M4 Value4
--------------------------------------------------------------------------------------
=========================================================
Command line:
clang -c -g -gmacro -O0 -DM3=Value3 -include myfile2.h mainfile.c
AST
=========================================================
MacroDecl...
2015 Nov 03
3
RFC: Supporting macros in LLVM debug info
...-----------------------------------------------------
1.
2.
3.
4. #undef M1
5. #define M1 NewValue1
--------------------------------------------------------------------------------------
myfile2.h:
--------------------------------------------------------------------------------------
1. #define M4 Value4
--------------------------------------------------------------------------------------
=========================================================
Command line:
clang -c -g -gmacro -O0 -DM3=Value3 -include myfile2.h mainfile.c
AST
=========================================================
MacroDecl...
2020 Aug 17
1
TDB database commands (TDB used by SAMBA)
...where IP would be the KEY and
> > "NAME,TIMESTAMP" would be the VALUE.
> >
> > I am using the tdbtool to insert/store data successfully (like the
> > example
> > below)
> >
> > tdbtool myfile.tdb store "key1" "value1,value2,value3,value4"
> >
> > The problem is when I want to READ the information back. It brings
> > hexadecimal code in a strange format. (see below)
> >
> > tdbtool myfile.tdb show "key1"
> >
> > key 4 bytes
> > key1
> > data 27 bytes
> > [...
2015 Nov 03
2
RFC: Supporting macros in LLVM debug info
...-----------------------------------------------------
1.
2.
3.
4. #undef M1
5. #define M1 NewValue1
--------------------------------------------------------------------------------------
myfile2.h:
--------------------------------------------------------------------------------------
1. #define M4 Value4
--------------------------------------------------------------------------------------
=========================================================
Command line:
clang -c -g -gmacro -O0 -DM3=Value3 -include myfile2.h mainfile.c
AST
=========================================================
MacroDecl...
2015 Nov 05
2
RFC: Supporting macros in LLVM debug info
...-----------------------------------------------------
1.
2.
3.
4. #undef M1
5. #define M1 NewValue1
--------------------------------------------------------------------------------------
myfile2.h:
--------------------------------------------------------------------------------------
1. #define M4 Value4
--------------------------------------------------------------------------------------
=========================================================
Command line:
clang -c -g -gmacro -O0 -DM3=Value3 -include myfile2.h mainfile.c
AST
=========================================================
MacroDecl...
2015 Nov 13
2
RFC: Supporting macros in LLVM debug info
...def M1
>
> 5. #define M1 NewValue1
>
>
> --------------------------------------------------------------------------------------
>
>
>
> myfile2.h:
>
>
> --------------------------------------------------------------------------------------
>
> 1. #define M4 Value4
>
>
> --------------------------------------------------------------------------------------
>
> =========================================================
>
>
>
> Command line:
>
> clang -c -g -gmacro -O0 -DM3=Value3 -include myfile2.h mainfile.c
>
>
>
>...
2015 Nov 04
2
RFC: Supporting macros in LLVM debug info
...;
>>
>> --------------------------------------------------------------------------------------
>>
>>
>>
>> myfile2.h:
>>
>>
>> --------------------------------------------------------------------------------------
>>
>> 1. #define M4 Value4
>>
>>
>> --------------------------------------------------------------------------------------
>>
>> =========================================================
>>
>>
>>
>> Command line:
>>
>> clang -c -g -gmacro -O0 -DM3=Value3 -incl...
2015 Nov 13
2
[cfe-dev] RFC: Supporting macros in LLVM debug info
...----------------------------------------------------------------------
>>>
>>>
>>>
>>> myfile2.h:
>>>
>>>
>>> --------------------------------------------------------------------------------------
>>>
>>> 1. #define M4 Value4
>>>
>>>
>>> --------------------------------------------------------------------------------------
>>>
>>> =========================================================
>>>
>>>
>>>
>>> Command line:
>>>
>>&g...
2020 Aug 17
0
TDB database commands (TDB used by SAMBA)
...t;
> IP address , Name, TimeStamp - where IP would be the KEY and
> "NAME,TIMESTAMP" would be the VALUE.
>
> I am using the tdbtool to insert/store data successfully (like the example
> below)
>
> tdbtool myfile.tdb store "key1" "value1,value2,value3,value4"
>
> The problem is when I want to READ the information back. It brings
> hexadecimal code in a strange format. (see below)
>
> tdbtool myfile.tdb show "key1"
>
> key 4 bytes
> key1
> data 27 bytes
> [000] 76 61 6C 75 65 31 2C 76 61 6C 75 65 32 2C 76...
2008 Jul 12
1
Reading Multi-value data fields for descriptive analysis
Hello,
I'm looking for help on the best approach to get "multi-value" data fields into R for simple descriptive analysis.
-------------------------------------
I am new to this list and new to R, but I really want to get over the hump and get productive with it. Some help with how to best get the following data into R would be greatly appreciated. I have programming experience
2002 Apr 14
4
Visual Studio .NET
Hi`
we recently switched to using Visual Studio .NET and now I get a crash
inside Ogg Vorbis unless I recompile Ogg Vorbis itself with Visual Studio
.NET. Are there any known issues like that? If possible I'd like to use the
official binaries.
-- Daniel, Epic Games Inc.
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To
2002 Apr 14
4
Visual Studio .NET
Hi`
we recently switched to using Visual Studio .NET and now I get a crash
inside Ogg Vorbis unless I recompile Ogg Vorbis itself with Visual Studio
.NET. Are there any known issues like that? If possible I'd like to use the
official binaries.
-- Daniel, Epic Games Inc.
<p>--- >8 ----
List archives: http://www.xiph.org/archives/
Ogg project homepage: http://www.xiph.org/ogg/
To
2009 Jul 08
1
[PATCH: host-browser replacement 0/3] replacement of host-browser on ovirt-server
The purpose of this patch is to replace the identify function in
host-browser.rb with a new script, host-register.rb.
host-register.rb is a qmf ruby console that interfaces with the newly
added matahari qmf agent on the ovirt node. While it stores node data
in the database with the same behavior as the original host-browser
implementation, it acquires the data using the amqp protocol (and