Displaying 20 results from an estimated 28 matches for "resuting".
Did you mean:
resuming
2005 Sep 22
4
Autocompleter: displaying resuts-div on focus
Hi,
In the last two days I posted 4 different questions to this forums, but
no single answer... Is it personal ? ;-)
Anywayz I continue trying, so maybe I have luck this time...
The question: in an autocomplete component, is it possible to make the
results-div apear when the text field is getting focus?
Thanx in advance,
Ron
2008 May 22
1
mixed model resuts from SAS and R
Hi,
I was wondering if there is a way to figure out why in SAS random beta
coefficients are 0 vs. in R the beta-s are non zero.
The variables of the data are nidl, time, and sub (for subject). Time and
nidl are continuous variables. I am applying random coefficients model.
Any input is greatly appreciated, Thanks, Aldi
1. mixed model in SAS:
======================
ods output SolutionR =
2008 Sep 10
3
(PR#12770) format() under Windows giv wrong resuts with
On Windows XP SP3
> format(pippo, format="%I:%M:%S %p")
[1] "11:43:12 PM"
In any case, if there is a problem it is in Windows, not in R, since this
is an Windows service that is being called. So there is no evidence at
all of any bug in R here.
On Wed, 10 Sep 2008, pego.enrico at tiscali.it wrote:
> Full_Name: Enrico Pegoraro
> Version: 2.7.2
> OS: Windows
2020 May 17
2
order function called on a data.frame?
Hi,
base::order main input arguments are defined as:
a sequence of numeric, complex, character or logical vectors, all of
the same length, or a classed R object
When passing a list or a data.frame, the resuts seems to be a bit
useless. Shouldn't that raise an error, or at least warning?
Best Regards,
Jan Gorecki
2011 Apr 13
3
latex, eps graphics and transparent colors
I have a diagram to be included in latex, where all my figures are .eps
graphics (so pdflatex is not an
option) and I want to achieve something
like the following: three concentric filled circles varying in lightness
or saturation. It is easiest to do this using
transparency, but in my test using the postscript driver, the
transparent color fills do not appear. Is it
correct that postscript()
2005 Dec 19
2
Parentheses for precedence?
I''m not sure whether this is a bug or whether I''m simply expecting
Ferret queries to work in a way other than they''re intended.
I notice that if use a query like:
(other_text:"Collaborative tools") AND NOT other_text:podcasts
I''ll get correct search results. However, if I put parentheses around
the second part, like:
2020 May 18
2
order function called on a data.frame?
I guess we could make it do the equivalent of do.call(order, df).
On Mon, May 18, 2020 at 8:32 AM Rui Barradas <ruipbarradas at sapo.pt> wrote:
>
> Hello,
>
> There is a result with lists? I am getting
>
>
> order(list(letters, 1:26))
> #Error in order(list(letters, 1:26)) :
> # unimplemented type 'list' in 'orderVector1'
>
>
2015 Oct 19
1
snmpd exec issue
Hello guys , I was trying to get a command output from my Centos 6
server using the snmpd "exec" section.
The line added to snmpd.conf id:
exec get_whitelist /bin/cat /home/snmp_user/whitelist.txt
Afer trying to get the resut performing the snmpwalk client form another
server I always got "permission denied"
After reading some forums I founded that disabling selinux It
2004 Oct 17
1
Q: merging ogg files
Hello,
I have read that one can merge OGG Vorbis files by simple concatenation. I
have tried this with two files produced by "rec". However, the resuting file
confuses xmms when I scroll and plays sometimes the first and sometimes the
second part (xmms also shows the wrong file length, 14:29, the same length
as the second file; first was 4:33).
Here is what ogginfo says about this file:
| Processing file "joined.ogg"...
|
| New logic...
2008 Apr 16
1
Load the shared object/DLL
Dear All,
I have written a function in c (in a file named 'a.c') as follows,
void convolve(double *a, int *na, double *b, int *nb, double *ab)
{
int i, j, nab = *na + *nb - 1;
for(i = 0; i < nab; i++)
ab[i] = 0.0;
for(i = 0; i < *na; i++)
for(j = 0; j < *nb; j++)
ab[i + j] += a[i] * b[j];
}
Then, I created a shared file in the Windows,
R CMD SHLIB -d -o
2005 Sep 26
3
ip route add default mpath (rr| drr|random|wrandom)...
Anyone using it? I''ve tried but after about 5 min I always get kernel panic. My setup is based on nano.txt. I works well but only if CONFIG_IP_ROUTE_MULTIPATH_CACHED=n. I just wanted to play with the new mpath feature of ip. But enabling CONFIG_IP_ROUTE_MULTIPATH_CACHED always resuts in kernel panic. I''m not using any kernel patches from http://www.ssi.bg/~ja/ - are they needed
2006 Oct 10
5
oddness when adding to index -
I was having some odd results when working with acts_as_ferret (current
trunk), so I decided to test with the current version of ferret to see
if I encountered the same problem. I did. Here are the details:
installed ferret 0.10.10 on debian sarge with ''sudo gem install ferret''
(btw, same results on OSX)
opened up an irb session:
irb(main):001:0> require
2011 Feb 01
1
multi-Operations on a matrix
Hello everybody.
I have this object
procedure property sensor_data sensor_date
1 S_10 nord 626821.0 2002-09-30T00:00:00+0200
2 S_10 nord 626821.0 2002-12-05T00:00:00+0100
3 S_10 nord 626821.1 2008-07-31T00:00:00+0200
4 S_1000 nord 626496.8 2002-09-30T00:00:00+0200
5 S_1000 nord 626496.8 2002-12-05T00:00:00+0100
6 S_1000
2020 May 18
0
order function called on a data.frame?
Hello,
There is a result with lists? I am getting
order(list(letters, 1:26))
#Error in order(list(letters, 1:26)) :
# unimplemented type 'list' in 'orderVector1'
order(data.frame(letters, 1:26))
# [1] 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47
#[22] 48 49 50 51 52 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
#[43] 17 18 19 20 21 22 23 24 25 26
And I
2020 May 18
0
order function called on a data.frame?
do.call(order, df). -> do.call(order, unname(df)).
While you are looking at order(), it would be nice if ';decreasing' could
be a vector the the length of list(...) so you could ask to sort some
columns in increasing order and some decreasing. I thought I put this on
bugzilla eons ago, but perhaps not.
Bill Dunlap
TIBCO Software
wdunlap tibco.com
On Mon, May 18, 2020 at 8:52 AM
2006 Dec 23
1
mySQL and to many connections with SQL statement UPDATE
Hi,
If Iam doing UPDATE SQL statements I got an overload for connection.
am doing everytime an Disconnect ${connid}) but this is ignored.
any idea?
best regards
Thomas
2007 Mar 13
2
Authenticating with Active Directory
Hi all,
I need to authenticate Active Directory users in Solaris. I wrote a program
to do it using smbclient.a lib, but the method Valid_User is returning aways
the code 1 (Network Error). The program is in attachment.
When I use the following code, the user is sucessfully authenticated:
smbclient '\\192.168.0.20\downloads' -W adteste -U dmadmin%Senha123
But, this command log in the
2005 Sep 26
0
Re: LARTC Digest, Vol 7, Issue 7
Hi Andreas!
I mainly understand what you mean, but best for me would be if you could make an example from the script I have. I know I did something wrong into it, but I still can''t see the error. If you could fix the error from my script that would be much appreciated.
Looking forward to hear from you,
Daniel Phlander
lartc-request@mailman.ds9a.nl wrote:
Send LARTC mailing list
2009 Jun 12
2
Sweave recode(car) and Lyx, compiling but not executing on Mac
I am just beginning to use Sweave with Lyx on a Mac (R2.8.1). I have
12 chunks of Sweave code that work fine, but this piece:
<<>>=
library(car)
2014 Apr 29
4
[LLVMdev] Proposal: add intrinsics for safe division
On 04/29/2014 10:44 AM, Filip Pizlo wrote:
> LD;DR: Your desire to use trapping on x86 only further convinces me
> that Michael's proposed intrinsics are the best way to go.
I'm still not convinced, but am not going to actively oppose it either.
I'm leery of designing a solution with major assumptions we don't have
data to backup.
I worry your assumptions about