Displaying 20 results from an estimated 20000 matches similar to: "3 Y axis possible?"
2003 Nov 07
3
Two Y-axises and One X-axis
Hi,
I would like to know if anyone knows how to draw a plot with two Y-axises and
one X-axis? When you have two sets of y values that do not have the same
scale, but correspond to the same x value, I would like to plot them on one
graph.
Could you please help me?
Thank you
Soyoko
2008 Jan 29
3
How to get two y-axises in a bar plot?
Hi,
I have measured two response variables (y1, y2) at each treatment level
(x = 0, 1.5 or 3). Now I would like to show the y1 and y2 against x in a
bar plot. However, y1 and y2 differ in scale so I need two y-axises, one
on the left side and one on the right side (and I dont want to
standardize my responses). This is fairly easy if you want to show
points,lines etc, but gets more complicated
2007 Jun 22
1
Switching X-axis and Y-axis for histogram
Dear all,
I'm creating a histogram with the function hist(). But
right now what I get is column representation (as normal).
I'm wondering if I could switch X-axis and Y-axis and
get row-representation of frequencies?
One more question, can I define the step of each axises
for the histogram?
Thanks so much!
Donghui
2005 Jun 29
3
plot (log scale on y-axis)
I am planning to plot my data on log scale (y-axis). There is a
parameter in plot function, which is
plot( ..., log="y", ...)
While, the problem is that it is with base of e. Is there a way to let
me change it to 10 instead of e?
Thanks
2012 May 11
3
How to specify multiple regular expressions for pattern argument
Dear list,
I want to show all the objects starting with "d" and ending with a digit.
How do I specify these conditions in the pattern argument
I can do one condition but not two
ls(pattern='^d')
ls(pattern='[[:digit:]]$')
are working.
But,
ls(pattern='^d'&'[[:digit:]]$') is not working.
Appreciate any comment.
Jun Shen
[[alternative HTML
2009 Mar 27
2
Sorting problem
Hi, everyone,
I was trying to sort a data frame by two columns, one increasing, the other
decreasing and got an error.
"Error in FUN(left) : invalid argument to unary operator",
The command is "BA[order(BA[1],-BA[2]),]". BA is the data frame. It was
working if I used increasing on both columns.
Why the decreasing symbol "-" is not working here? Thanks.
--
Jun
2014 Jun 05
0
Question about voltage threshold setting in NUT
Hey Charles,
Latest update. Looks like in ups.conf I setup default.input.transfer.low =
84. After I took that line out, restart upsdrvctl, upsmon, and upsd, the
command of
sudo upsrw -s input.transfer.low=70 -u * -p * ups
return OK. Still need to verify if it works by using voltage regulator and
will keep you updated.
Thank you for your help
Regards
Shen
On Thu, Jun 5, 2014 at 8:54 AM,
2010 Apr 12
0
[LLVMdev] Why function pointer is different from other data type?
"float (i32)* (float (i32)*)*" is not a return type.
According to the description of the 'call' instruction in LLVM Assembly
Language Reference Manual (http://llvm.org/docs/LangRef.html#i_call) this
is a signature of the pointer to function value being invoked (which
includes the return type). In your case the full signature is printed
because get_ptr returns a pointer to
2010 Apr 12
2
[LLVMdev] Why function pointer is different from other data type?
I'm sorry that I should remove the comment.
In fact my question is about the "float (i32)* (float (i32)*)*", why
we use this kind of return type instead of just "float (i32)*".
Thanks a lot.
Hao
On Mon, Apr 12, 2010 at 5:42 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Hao Shen,
>
>> %4 = call float (i32)* (float (i32)*)* @get_ptr(float (i32)* @a1)
2014 Jun 18
2
Question about recycle power of Tripp Lite UPS
Hello Charles,
Thank you for your comment. Just tried to use ups.delay.shutdown to
postpone the UPS shutdown. The thing is that if the PC shutdown first, then
the UPS, it wasn't able to send "shutdown.reboot" any more because
everything is power off after the UPS shuts down.
Also play on the watchdog for Tripp Lite. Looks like it has the command of
reset.watchdog but not
2018 Nov 14
2
Fw: How to define an instruction
Thank you for answering my confusion.
I have another questions.
If I add really instructions instead intrinsics ,can I reach my purpose?
I guess ,the answer is "can't". I don't find the anything about how machine to do about instructions,especially "ALU" instructions.
Thank you again,
Tianhao Shen
On 11/14/2018 13:42,Craig Topper<craig.topper at gmail.com>
2009 Apr 15
2
How to extract p-value into a table from a groups of t test
Hi,
I have run a groups of t test and obtained a list of the t-test results
(about 30). How do I extract p-values from the 30 t-test results and make a
table output? Thanks
Jun
Example t-test output:
============================
$Lambda_z
Welch Two Sample t-test
data: x[PA1.BS.DN$Onecode == 2] and x[PA1.BS.DN$Onecode == 3]
t = -0.1128, df = 33.635, p-value = 0.9109
alternative
2017 Apr 19
2
RPC on LLVM IR: any example programs for this?
Hi Lang,
Thanks for your reply! It seems that the code of ORC has been changed a lot
these months. Actually what I wanted to see then was quite simple, Let's
say we have two modules M1.bc and M2.bc, and in M1 we want to call function
foo(defined in M2.bc)with the function type
int foo(float, char*){...}
what basic steps do I need to do to make M1.bc call foo remotely?
BTW, does the
2009 May 07
2
A potential bug for paste() ?
Hi, everyone,
Try the following command to see if you get TRUE or FALSE. I get FALSE on a
unix platform but TRUE on Windows. Any comment?
all(paste(Theoph[1],Theoph[2])==paste(Theoph[[1]],Theoph[[2]]))
--
Jun Shen PhD
PK/PD Scientist
BioPharma Services
Millipore Corporation
15 Research Park Dr.
St Charles, MO 63304
Direct: 636-720-1589
[[alternative HTML version deleted]]
2009 Sep 15
1
Compare a group of line slopes
Hi, all,
I am thinking to compare a group of slopes from regression lines to see if
they are different overall, and then make specific comparisons between
groups. How can I achieve that in R? I searched the archives and there are
only discussions about comparing two lines a time. Thanks.
A sample data set is like the following. I would like to compare the
regression slopes between the five
2015 Jul 18
4
[LLVMdev] How can i differentiate pointer type int 32* from int 32** ?
John, thanks for your helpful advice.
My ultimate goal is to construct a full instruction-level program
dependence graph for a given IR file. The hard point is how to establish
the correct data dependence edges when some function arguments are
multi-level pointers. To solve this problem I hope to check the point-to
level for each pointer variable. I think the data dependence through
pointers can
2010 May 12
1
[LLVMdev] How can I remove Intrinsic Functions during llvm-gcc compilation?
On Mon, May 10, 2010 at 7:19 PM, John Criswell <criswell at uiuc.edu> wrote:
> SHEN Hao wrote:
>> Thanks a lot for your answer.
>> As what you said, I can not have any options to avoid generating this kind
>> of intrinsic for byte code. Is it possible to modify gcc and ask it take
>> all memset liked functions as a general function call? I know this solution
2015 Apr 29
2
[LLVMdev] AliasAnalysis calling failed in Pass interaction
Dear LLVM developers,
I am Shen, a PhD student at Lehigh Univ. PA. Now I am implementing a
Program Dependence Graph(PDG) on LLVM. I have 4 passes here:
1. ProgramDependenceGraph (a *ModulePass *on the highest level)
2. DataDependenceGraph (a Intermediate *FunctionPass*).
3. FlowDependenceAnalysis Pass (a intermediate *FunctionPass*) which uses
llvm built-in AliasAnalysis (-basicaa)
4.
2014 Jun 05
2
Question about voltage threshold setting in NUT
Hello Charles,
Thank you so much for your help. Just run upsc and it is possible that
input.transfer.low is the one because we used power regulator to bring down
the power around 84v and then the ups sent the power loss message to PC. Do
you think some others may take effect for the low voltage? Just have the
upsc result attached.
Then I retried input.transfer.low, default.input.transfer.low,
2010 Jun 07
2
[LLVMdev] i80 data type
On Mon, Jun 7, 2010 at 5:49 PM, Duncan Sands <baldrick at free.fr> wrote:
> Hi Hao Shen,
>
>> Is there anyone who knows well i80 data type? Is there any
>> corresponding data type
>> for X86 processor? uint80_t or int80_t for gcc?
>
> no, there is no native processor support for i80. GCC does not have
> a direct equivalent to i80. However if you declare a