Displaying 9 results from an estimated 9 matches for "chartable".
Did you mean:
charitable
2006 Nov 14
2
Building R from source
...99 -DLEA_MALLOC' FFLAGS='-O3 -Wall' -f Makef
ile.win
make --no-print-directory -C ./graphapp OPTFLAGS='-O3 -Wall -pedantic -std=gnu99'
make --no-print-directory -C ./getline OPTFLAGS='-O3 -Wall -pedantic -std=gnu99'
make[4]: `gl.a' is up to date.
make -f Makefile.win chartables.h
make[5]: `chartables.h' is up to date.
make -f Makefile.win makeMakedeps
make -f Makefile.win libpcre.a
make[5]: `libpcre.a' is up to date.
make[4]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
gcc -shared -s -mwindows -o R.dll R.def console.o dataentry.o...
2018 Aug 28
3
build package with unicode (farsi) strings
Hi,
I have a R script file with Persian letters in it defined as a variable:
#' @export
letters_fa <- c('???','?','?','?','?','?','?','?','?','?','?','?')
I have specified the encoding field in my DESCRIPTION file of my package.
...
Encoding: UTF-8
...
I also included
2018 Aug 30
1
build package with unicode (farsi) strings
On Thu, Aug 30, 2018 at 2:11 AM Thierry Onkelinx
<thierry.onkelinx at inbo.be> wrote:
>
> Dear Farid,
>
> Try using the ASCII notation. letters_fa <- c("\u0627", "\u0641"). The full
> code table is available at https://www.utf8-chartable.de
It's a little easier to do this with code:
letters_fa <- c('???','?','?','?','?','?','?','?','?','?','?','?')
writeLines(stringi::stri_escape_unicode(letters_fa))
#> \u0627\u0644\u0641
#&g...
2023 Apr 13
1
Split String in regex while Keeping Delimiter
...e);
}
extract.nonLetters(str, sort = FALSE)
# 43 226 128 147
Note:
- the code for "+" is 43, and for simple "-" is 45: as.numeric
(charToRaw("+-"));
- "226 128 147" codes something else, but it is not trivial to get the
Unicode code Point;
https://www.utf8-chartable.de/unicode-utf8-table.pl?start=8192&number=128&utf8=dec
The following is a more comprehensive Regex expression, which accepts
many variants of "-":
tokens = strsplit(str, "(?<=[-+\u2010-\u2014])\\s++", perl=TRUE)
Sincerely,
Leonard
2007 May 23
2
Possible ld.exe problem when building
...antic -std=gnu99' FFLAGS='-O3 -Wall' -f Makefile.win
make --no-print-directory -C ./graphapp OPTFLAGS='-O3 -Wall -pedantic -std=gnu99'
make --no-print-directory -C ./getline OPTFLAGS='-O3 -Wall -pedantic -std=gnu99'
make[4]: `gl.a' is up to date.
make -f Makefile.win chartables.h
make[5]: `chartables.h' is up to date.
make -f Makefile.win makeMakedeps
make -f Makefile.win libpcre.a
make[5]: `libpcre.a' is up to date.
make[4]: Nothing to be done for `all'.
make[4]: Nothing to be done for `all'.
gcc -shared -s -mwindows -o R.dll R.def console.o dataentry.o...
2013 Jun 08
1
reading a character translation table into R
...#39;d like to read this into R to use as a character translation table,
but am stuck on two things:
- The 5 fields in the file are column-aligned and are separated by 2+
white space characters.
In perl this is trivial to read and parse via something like
@entries = split("\n", $charTable);
foreach (@entries) {
($desc, $char, $code, $html, $tex) = split(/\s\s+/);
}
AFAIK, the only function for reading such data is utils::read.fwf, but I
have to specify the field widths.
I don't know of any function that allows even a simple regrex like this
a...
2018 Aug 30
0
build package with unicode (farsi) strings
Dear Farid,
Try using the ASCII notation. letters_fa <- c("\u0627", "\u0641"). The full
code table is available at https://www.utf8-chartable.de
Best regards,
ir. Thierry Onkelinx
Statisticus / Statistician
Vlaamse Overheid / Government of Flanders
INSTITUUT VOOR NATUUR- EN BOSONDERZOEK / RESEARCH INSTITUTE FOR NATURE AND
FOREST
Team Biometrie & Kwaliteitszorg / Team Biometrics & Quality Assurance
thierry.onkelinx at inbo.be...
2010 Feb 26
2
Error on Windows build: "unable to re-encode"
Dear developers,
while our package TripleR (hosted on R-Forge) builds well on Mac and Linux, the Windows build shows following error (http://r-forge.r-project.org/R/?group_id=418&log=build_win32&pkg=TripleR&flavor=patched):
Fri Feb 26 00:53:38 2010: Building binary for package TripleR (SVN revision NA)
using R version 2.10.1 Patched (2010-02-24 r51172) ...
* installing to library
2006 May 18
0
R-devel and PGI 6.0 compile error
...rise Linux AS release 3 (Taroon Update 7) using the Portland Group
compiler 6.0. (I have not yet successful compiled R on this
configuration, so I don't know if this is a new problem.) I get an error
pgcc -L/usr/local/pgi/linux86-64/6.0/libso -L/usr/lib64 -o dftables
dftables.o
../dftables chartables.h
../dftables: error while loading shared libraries: libpgc.so: cannot open
shared object file: No such file or directory
make[3]: *** [chartables.h] Error 127
The library containing libpgc.so is in both my LD_LIBRARY_PATH and in
LDFLAGS. More details are below. In configure I am also getting...