search for: var_c

Displaying 6 results from an estimated 6 matches for "var_c".

Did you mean: var_t
2007 Mar 01
2
setting font in plots
Dear Reader I am trying to change the font in a plot and after several trials finally came up with the following code. plot(var_a, var_b, pch = 16, font.lab = 10, font = 10) points(var_a, var_c, pch = 3, font = 10) legend(0.1, 0.8, legend = c(?var_b?, ?var_c?), pch = c(16,3)) It does change the font in the plot (Courier), but not in the legend that does not accept the "font = ..." argument. I could also not find a list with font names and corresponding numbers. Surely there...
2016 Feb 07
5
Assigning constant value without alloca/load/store
...ustom IR I can reassign every register I have to reassign every new expression with a new llvm Value. But my IR has something like this: REG A = VAR C + CONST 2 REG A = CONST 12 So my workaround looks like: ; I am returning the registers in an anonymous struct define { i32, i32, i32 } @test(i32 %var_c) { ; Initializing registers %reg_a_0 = select i1 true, i32 0, i32 0 %reg_b_0 = select i1 true, i32 0, i32 0 %reg_c_0 = select i1 true, i32 0, i32 0 ; Translated instructions %reg_a_1 = add i32 %var_c, 2 %reg_a_2 = select i1 true, i32 12, i32 0 ; Prepare return values %ret_0 = in...
2016 Feb 08
2
Assigning constant value without alloca/load/store
...with a new llvm Value. But my IR has something like >> this: >> >> REG A = VAR C + CONST 2 >> REG A = CONST 12 >> >> So my workaround looks like: >> >> ; I am returning the registers in an anonymous struct >> define { i32, i32, i32 } @test(i32 %var_c) { >> ; Initializing registers >> %reg_a_0 = select i1 true, i32 0, i32 0 >> %reg_b_0 = select i1 true, i32 0, i32 0 >> %reg_c_0 = select i1 true, i32 0, i32 0 >> >> ; Translated instructions >> %reg_a_1 = add i32 %var_c, 2 >> %reg_a_2 =...
2013 Jan 19
0
import data (txt) separated by many blank spaces and lines with variable names that correspond to multiple observations.
Hello, I have read other posts and in part I tried to solve my problem. I have a txt file but the values ??as well as being separated by many blank spaces and lines eg. var_a var_b var_c 1 2 4 5 2 6 2 have an encoding problem in the header, let me explain: some of the variables grouping multiple observations throughout the text eg var_a = 1 var_b = 2,4,5...
2005 Apr 15
2
Help with "MERGE" gratefully accepted
Hello How do I use function 'MERGE" to combine the FILE A and FILE B below to make FILE C? Thank you FILE A 140 151 167 30.1 11.4 40 FILE B 140 167 5.7 30.3 FILE C 140 151 167 30.1 11.4 40 5.7 NA 30.3
2010 Dec 13
7
descriptive statistics
Hi. In a data set I have a variable that takes values from 1 to 14. For each subgroup of values of this variable, I would like to obtain some descriptive statistics of other variables present in the data set. I've been trying with a "for" loop but I couldn't get nothing. Could you please suggest me some lines? -- View this message in context: