Displaying 9 results from an estimated 9 matches for "numstr".
2023 Jan 09
0
Interactive 3D Plot with non-numeric axis tick labels
...ctive 3D plot from a data frame like this:
#: number
TLD: Countrycode
Date: date
String: a label
Because plot3d can only deal with numbers I converted Date to Year and
TLD as well as String to a numeric value like this:
numTLD <- as.numeric(factor(df$TLD))
# TLD Date String Year numTLD numString
1 DE 1988-11-07 B23K 1988 3 74
2 DE 1984-09-06 B23K 1984 3 74
3 DE 1996-03-21 B23K 1996 3 74
4 DE 1996-03-21 B23K 1996 3 74
5 DE 1996-03-21 B23K 1996 3 74
6 DE 1996-03-21 B23K 1996 3 74
7 DE 1996-03-21 B23K 1996 3 74
8 DE 1996-03-21 B23K 1996 3 74
9 DE 1996-03-21 B23K 1996 3 74
To create an int...
2007 Aug 10
2
Convert multiple C strings into an R character vector
I was hoping someone could tell me how to convert multiple C character
strings into an R character vector.
Thanks,
Jon
--
View this message in context: http://www.nabble.com/Convert-multiple-C-strings-into-an-R-character-vector-tf4249882.html#a12095059
Sent from the R devel mailing list archive at Nabble.com.
2010 Feb 17
2
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
...tChar = getchar())))
IdentifierStr += LastChar;
if (IdentifierStr == "def") return tok_def;
if (IdentifierStr == "extern") return tok_extern;
return tok_identifier;
}
if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
std::string NumStr;
do {
NumStr += LastChar;
LastChar = getchar();
} while (isdigit(LastChar) || LastChar == '.');
NumVal = strtod(NumStr.c_str(), 0);
return tok_number;
}
if (LastChar == '#') {
// Comment until end of line.
do LastChar = getchar();
while...
2010 Feb 17
0
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
...ifierStr += LastChar;
>
> if (IdentifierStr == "def") return tok_def;
> if (IdentifierStr == "extern") return tok_extern;
> return tok_identifier;
> }
>
> if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
> std::string NumStr;
> do {
> NumStr += LastChar;
> LastChar = getchar();
> } while (isdigit(LastChar) || LastChar == '.');
>
> NumVal = strtod(NumStr.c_str(), 0);
> return tok_number;
> }
>
> if (LastChar == '#') {
> // Comment until end of l...
2010 Feb 17
1
[LLVMdev] Kaleidoscope toy4 failure seg fault on llvm::ExecutionEngine::getTargetData (this=0x0)
...gt;> if (IdentifierStr == "def") return tok_def;
>> if (IdentifierStr == "extern") return tok_extern;
>> return tok_identifier;
>> }
>>
>> if (isdigit(LastChar) || LastChar == '.') { // Number: [0-9.]+
>> std::string NumStr;
>> do {
>> NumStr += LastChar;
>> LastChar = getchar();
>> } while (isdigit(LastChar) || LastChar == '.');
>>
>> NumVal = strtod(NumStr.c_str(), 0);
>> return tok_number;
>> }
>>
>> if (LastChar == '#...
2006 May 17
3
Need a little help with the pureRubywin32-eventlog
> -----Original Message-----
> From: win32utils-devel-bounces at rubyforge.org
> [mailto:win32utils-devel-bounces at rubyforge.org] On Behalf Of
> Berger, Daniel
> Sent: Wednesday, May 17, 2006 12:07 PM
> To: Development and ideas for win32utils projects
> Subject: Re: [Win32utils-devel] Need a little help with the
> pureRubywin32-eventlog
>
>
> >
2001 Jul 01
1
[Wine-20010629] compilation problems with freetype
...70: parse error before `wc'
truetype.c:173: `wc' undeclared (first use in this function)
truetype.c:168: warning: value computed is not used
truetype.c: In function `ReadNameTable':
truetype.c:203: `FT_UInt' undeclared (first use in this function)
truetype.c:203: parse error before `numStrings'
truetype.c:204: `FT_SfntName' undeclared (first use in this function)
truetype.c:205: `FT_Error' undeclared (first use in this function)
truetype.c:207: `numStrings' undeclared (first use in this function)
truetype.c:207: warning: implicit declaration of function `FT_Get_Sfnt_N...
2006 May 17
1
Need a little help with the pure Ruby win32-eventlog
Hi all,
I''m working on the EventLog#read method for the pure Ruby version of
win32-eventlog, but I''m stuck on the get_description private method.
Here are the problems:
* I don''t think I''m advancing the EVENTLOGRECORD properly between
iterations. Take a look at the end of the "while dwread > 0" loop. I
get some records, but not all of them.
2007 Dec 05
21
Fwd: win32/process problem
Any ideas?
---------- Forwarded message ----------
From: Christian Kerth <christian.ke... at dynamicmedia.at>
Date: Dec 5, 8:28 am
Subject: win32/process problem
To: comp.lang.ruby
I have an application that consists of serveral independent parts.
I want to use the Windows Process API to spawn the different
processes.
e.g.
require ''rubygems''
require