search for: tias

Displaying 20 results from an estimated 6318 matches for "tias".

Did you mean: tia
2008 Oct 25
1
Filling symbols in xyplot
Hello, I am using xyplot and am happy with my graph, *except* that I cannot get the symbols to be filled. I tried using bg=c("red3","red","black","lightgrey")) in both the key and the xyplot function, that that was obviously not the answer. I would like the sybols to be filled with the same colors as the lines. Does anybody have an answer? In case
1995 Oct 11
0
TIA proudly supports FreeBSD
The subject line says it all. TIA, The Internet Adapter, is a UNIX-based application that allows users to run graphical applications on their shell accounts. For more information, please visit the TIA Home Page: http://marketplace.com/tia/tiahome.html or contact me directly. Thanks in advance. --Caryn Rose TIA Marketing Manager InterMind Corp. http://www.intermind.com
2011 Jul 26
5
Help with boxplot
Hi guys, I need your help with the boxplot. I've to create a boxplot starting from a table (.csv) in which there are the result of a test. Each column is a question and the rows are the answer of the respondents (from 0 to 5). Some answer is missing and has been filled with NA. the table has been loaded in R with the function read.csv I created the boxplot with the function boxplot and all
2006 Aug 08
8
RESTful Rails Plugin
I am following the instructions on how to use RESTful Rails plugin found at http://www.xml.com/pub/a/2006/04/19/rest-on-rails.html?page=3. When I run the rake test:functionals I get the following error message: rake aborted! undefined method `first'' for :book:Symbol (See full trace by running task with --trace) How can I fix this problem? I am using Rails 1.1.4 version. TIA
2008 Oct 29
6
substring/strsplit question
Dear R People: Here is a toy example: > x <- c("2E","5W","12H") > substr(x,2,2) [1] "E" "W" "2" > Sometimes x has 3 elements, sometimes 2. I want to extract the last element, and then extract the other 1 or 2 elements. How can I do this, please? TIA, Sincerely, Erin -- Erin Hodgess Associate Professor Department of
2014 Sep 29
2
[LLVMdev] ptrtoint
Technically I don't need C/C++ code for it. I'm not really very good at writing LLVM assembly code by hand (but I should be - lol ). I'm working on fast-isel and I want to have executable tests for all of this and not just make check tests. It's easier for me to do that in C/C++ and then save the .ll and morph it into a make check test. I'm going through the fast-isel
2005 Feb 15
6
no kernel upgrade on 3.3
I have 2 servers: On both, I did yum update. One upgraded the kernel, the other didn't. Why? TIA, Dave Augustus
2003 Oct 27
0
I am looking for the barplot version of histbackback( Hmisc library ) TIA
[This email is either empty or too large to be displayed at this time]
2005 Jun 06
1
how to generate pairwise plots with data frames - tia
hi - sorry for a newbie question, but I've tried to go through the documentation and couldn't find anything that would address my specific need. in a nutshell, I have a txt file containing a data matrix with 10 columns of data. I would like to generate pairwise plots of the data, i.e. 1 column against the other 9. Since this will produce 50 plots, I'd like to do it using a
2005 Feb 02
8
howto answer a call in a queue
hello i need to know how to enable the feature in the agents.conf to make the users got to press # to answer the call when is in the queue and the agent is logged in. at this time the call enters the queue and the agents who is logged in only beeps once and then the call enters automatically. can anybody help me?? TIA Edgar
2009 Aug 26
5
Noob DRY method question
Hi Gurus, I''m learning the Rails framework, and I have this exact block of html/javascript in two places in an if/else construct in application.html.erb: <body onload="Modalbox.show(''<div class=\''warning\''> <p> <center> <%= flash[ :notice ] %> </center> </p> <p> <center> <input
2014 Sep 29
2
[LLVMdev] ptrtoint
Thanks. So what about a fragment like this: (taken from fast-isel.ll in X86 ) define void @ptrtoint_i1(i8* %p, i1* %q) nounwind { %t = ptrtoint i8* %p to i1 store i1 %t, i1* %q ret void } TIA. On 09/29/2014 02:16 PM, Duncan P. N. Exon Smith wrote: >> On Sep 29, 2014, at 1:51 PM, reed kotler <rkotler at mips.com> wrote: >> >> What kind of C or C++ code will emit
2006 Aug 12
7
Override method in ActiveRecord
Hello, there is a method ActiveRecord::Base#exists? . I would like to override this method in a class ActiveRecord. Could anyone tell me how to do it? TIA -- Posted via http://www.ruby-forum.com/.
2009 Nov 06
6
Apache
So where does centos hide my httpd.conf file? TIA, V -------------- next part -------------- An HTML attachment was scrubbed... URL: <http://lists.centos.org/pipermail/centos/attachments/20091106/dd13a664/attachment-0003.html>
2006 Aug 17
4
Unit Tests and lib/
Hi *, I have a few modules in lib/ and I use them mostly in my models. I''d like to add a few unit tests and run them with rake with all other tests of my app: where do I have to write them ? TIA, ngw -- Nicholas Wieland nicholas_wieland@yahoo.it -------------- next part -------------- An HTML attachment was scrubbed... URL:
2007 Jun 19
1
plotting order of lines in xyplot panels while using conditioning variable and groups
I am using the following code: library(lattice) data<-read.csv("data.csv") attach(data) fig<-xyplot(S_t~month|event, key = list(text=list(lab=c("Time to first CV event - Data", "Survival post first CV event - Model", "Survival post first MIA/CA event - Data",
2009 May 07
8
OT: Photo Editor to reduce 272 photos to VGA at once
I returned from Bogot? and have a Folder with 272 photos that total 419.9 MB. I would like to email them to several people who were there for the concerts I attended. I have Picasa, gThumb (not really an Editor but I believe it can reduce the quality of photos) and The GIMP installed. Is there a way I can have a photo editor reduce all of them to VGA size, without doing that 272 times? The people
2006 Sep 27
4
LAMP benchmarking tool
Is anyone using a reliable Linux/Apache/MySQL/PHP benchmarking suite? There are benchmark software for individual pieces but I hope there is one tool or several small tools that act together to give a picture of how long a request takes from entering Apache, to PHP, to MySQL and then back to the client.TIA!
2014 Apr 16
4
[LLVMdev] adding comment
Is there a simple way to add a comment in the machine instructions of a basic block? Ideally something that can be used with machine instruction builder. Tia. Reed
2014 Sep 30
2
[LLVMdev] ptrtoint
If you can't make an executable test from C or C++ code then how do you know something works. Just by examination of the .s? On 09/30/2014 03:18 PM, Reed Kotler wrote: > If I wanted to call this function that they generated by hand, from C or > C+ code, how would that be done? > > if have seen cases where a real boolean gets generated but it was > something fairly involved.