search for: gltr

Displaying 4 results from an estimated 4 matches for "gltr".

Did you mean: gdtr
2011 Jun 30
1
Italicized greek symbols in PDF plots
...plished this task like so: library(ggplot2) label_parseall <- function(variable, value) { plyr::llply(value, function(x) parse(text = paste(x))) } dat <- data.frame(x = runif(270, 0, 125), z = rep(LETTERS[1:3], each = 3), yy = 1:9, stringsAsFactors = TRUE) #unicode italicized delta dat$gltr = factor(c("italic(\u03b4)^14*N","italic(\u03b4)^15*N","italic(\u03b4)^13*C")) #So this is what I want my plot to look like: plt <- ggplot(data = dat, aes(x = yy, y = x)) + geom_point(aes(x= yy, y=x, shape=z, group=z), alpha=0.4,position = position_dodge(width...
2019 Jan 28
2
How to generate .bc file using configure && make on Mac OS X?
...le. And there are not .bc files accompanying it. $ file bash bash: Mach-O 64-bit executable x86_64 Using the original commands on Linux, I got the following associated files. ./configure CC=clang RANLIB=llvm-ranlib CFLAGS=-flto LDFLAGS=-Wl\,-plugin-opt=save-temps\ -flto\ -fuse-ld=gold make $ ls -gltr bash.*.bc -rw-r--r-- 1 staff 4769876 Jan 25 10:16 bash.0.0.preopt.bc -rw-r--r-- 1 staff 4769876 Jan 25 10:16 bash.0.2.internalize.bc -rw-r--r-- 1 staff 4739688 Jan 25 10:16 bash.0.4.opt.bc -rw-r--r-- 1 staff 4739688 Jan 25 10:16 bash.0.5.precodegen.bc -- Regards, Peng
2019 Jan 28
2
How to generate .bc file using configure && make on Mac OS X?
> On macOS you just omit the '-fuse-ld=gold' and it will work out of the box. > > ./configure CC=clang RANLIB=llvm-ranlib CFLAGS=-flto > > LDFLAGS=-Wl\,-plugin-opt=save-temps\ -flto\ -fuse-ld=gold > > make No. It doesn't work on Mac OS by just omitting '-fuse-ld=gold'. $ ../../../extract/bash-5.0/configure CC=clang CXX=clang++ RANLIB=llvm-ranlib
2011 Jun 30
0
help with interpreting what nnet() output gives:
...plished this task like so: library(ggplot2) label_parseall <- function(variable, value) { plyr::llply(value, function(x) parse(text = paste(x))) } dat <- data.frame(x = runif(270, 0, 125), z = rep(LETTERS[1:3], each = 3), yy = 1:9, stringsAsFactors = TRUE) #unicode italicized delta dat$gltr = factor(c("italic(\u03b4)^14*N","italic(\u03b4)^15*N","italic(\u03b4)^13*C")) #So this is what I want my plot to look like: plt <- ggplot(data = dat, aes(x = yy, y = x)) + geom_point(aes(x= yy, y=x, shape=z, group=z), alpha=0.4,position = position_dodge(width...