Displaying 20 results from an estimated 34411 matches for "preferences".
Did you mean:
references
2011 Dec 28
2
Gale-Shapley Algorithm for R
Dear R-helpers,
I'm not a speciallist in writing complex functions, and the function still
very rusty (any kind of suggestions are very welcome). I want to implement
Gale-Shapley algorithm for R Language. It is based on
http://www.jstor.org/stable/10.2307/2312726 Gale and Shapley (1962) , and it
has evolved to
2011 Jul 11
2
Pre-populating association
...has_many :ballots
accepts_nested_attributes_for :questions, :allow_destroy => true
attr_accessible :title, :description, :status, :deadline, :questions_attributes
def owner
Person.find(owner_id)
end
end
class Question < ActiveRecord::Base
belongs_to :survey
has_many :preferences
end
class Ballot < ActiveRecord::Base
belongs_to :survey
has_many :preferences
end
class Preference < ActiveRecord::Base
belongs_to :ballot
belongs_to :question
end
To be clear: a survey is the set of questions and a ballot is a voter''s set of answers (preferences).
I'...
2007 Mar 16
1
prefdm still unfinished?
After testing the beta of CentOS 5, i was a little surprised to notice that
the display manager part of the prefdm file in /etc/X11 was exactly like in
CentOS 4 / RHEL4 and previous versions including RH9.
it reads like this (added line numbers for reference):
14 # Run preferred X display manager
15 preferred=
16 if [ -f /etc/sysconfig/desktop ]; then
17 . /etc/sysconfig/desktop
18 if [
2003 Dec 11
2
FAX application does not work for me....
Hi,
I have tried to install and configure the FAX app using the steps described
in several mails on this list.
When a FAX call arrives on X100P, the fax extension is executed, which looks
like:
exten => fax,1,RxFax(/var/spool/asterisk/incoming/${CALLERIDNUM}.tif)
exten => fax,2,Hangup
It tries to negociate, but nothing is received at the end and the other part
times out.
More, after this
2009 Nov 07
2
plot.window arguments being ignored?
Hi,
Why, when I run the script below, is my y-axis range command being ignored?
I.e., the y axis graphed consistently fits the line specified in the plot
command, but never fits the line I'm trying to add in the subsequent line
command.
This is my first R script, so if I'm doing anything else wacky that jumps
out, please let me know. I'm an advanced Stata user, but R is new to me.
2003 Oct 28
5
rxfax problem
Hello,
I tryed out spandsp with libtiff-3.5.7 and with Asterisk from CVS.
I tryed to receive a fax on a CAPI channel. Finally I got a file with
8 byte length (/tmp/testfax.tif).
How can I do next?
Thanks in advance,
Thomas
ps: what are hardware requirements for sending/receiving faxes?
-- creating pipe for PLCI=0x101 msn = 2258589
> sent ALERT_REQ PLCI = 0x101
--
2011 Sep 28
3
Data transformation & cleaning
...he following
1. Make the data set "wide", counting the observations so the data looks
like this:
ID | Count of Preference A | Count of Preference B
123 | 1 | 1
...
Using
table1 <- dcast(data,ID ~ Page,fun.aggregate=length,value_var='Page' )
2. Create a correlation matrix of preferences
cor(table2[,-1])
How would I restrict my correlation to show preferences that met a minimum
sample threshold? Can you confirm if the two following commands do the same
thing? What would I do from here (or am I taking the wrong approach)
table1 <- dcast(data,Page ~ Page,fun.aggregate=length,valu...
2011 Jun 04
1
library(SenoMineR)- Triangle Test Query
...uct X Product Y Product Z Response Preference
Panelist3.Test2 2 3 3 X Y
Panelist6.Test2 2 3 3 X Y
Panelist9.Test2 2 3 3 X Y
However when I analyse the design with the answers and preferences using the
following script, I get the $pref output which shows that product 2 is
preferred over 3 all the time. Can somebody explain what is wrong in my
script?
answer<-as.vector(design$Response)
preference<-as.vector(design$Preference)
triangle.test (design[,1:3], answer,preference)
##$pre...
2003 Dec 07
5
RxFAX application
Hi all,
I have installed FAX app as described in several mails.
When a fax call is received, I get the following in the * console:
-- Starting simple switch on 'Zap/1-1'
-- Executing Answer("Zap/1-1", "") in new stack
-- Executing Ringing("Zap/1-1", "") in new stack
-- Executing Wait("Zap/1-1", "2") in new stack
2009 Nov 26
1
Problems with samba 3.4.2 and w2k8r2 AD
Hi!
I can Join, wbinfo -u etc works but getent passwd doesnt...
I think the problem is: get this error:
'get_dc_list: preferred server list: ", *"'
but why does it not know my domain? (already joined)
Can someone help?
Greetz
Conf:
#GLOBAL PARAMETERS
[global]
workgroup = CHAOS
realm = chaos.local
password server = beelzebub.chaos.local
preferred master = no
2006 Apr 08
2
dovecot-dspam-plugin not launching dspam
...ug
No QuarantineAgent option found. Using standard quarantine.
DSPAM Instance Startup
input args: /usr/bin/dspam --debug --user retrain --source=error
--stdout --class=spam --signature=4,4434846e237406491211187
pass-thru args:
processing user retrain
uid = 0, euid = 0, gid = 0, egid = 101
loading preferences for user retrain
Loading preferences for uid 7
Loading preferences for uid 0
Loading preferences for uid 0
default preferences empty. reverting to dspam.conf preferences.
Loading preferences from dspam.conf
using /var/spool/dspam/opt-in/local/retrain.dspam as path
using /var/spool/dspam/opt-out/loc...
2004 Aug 14
2
re: R-1.9.1 preferences (PR#7170)
...ffect.
I still don't understand why you need to have the "override" box there
in the first place
T
Begin forwarded message:
> From: Anthony Westerling <leroy@ucsd.edu>
> Date: Fri Aug 13, 2004 4:41:01 PM US/Pacific
> To: r-bugs@r-project.org
> Subject: R-1.9.1 preferences
>
> R-1.9.1 on a PowerPC G4 with Mac OS X 10.2.8
>
> R:Preferences:Quartz Device:Quarz Window position is set to "center"
>
> I hit "apply"
>
> new quartz windows still appear in the upper right hand corner of the
> screen
>
> if I reopen prefe...
2007 Feb 25
8
Double-banger function names: preferences and suggestions
What do you prefer/recommend for double-banger function names:
1 scale.colour
2 scale_colour
3 scaleColour
1 is more R-like, but conflicts with S3. 2 is a modern version of
number 1, but not many packages use it. Number 3 is more java-like.
(I like number 2 best)
Any suggestions?
Thanks,
Hadley
2017 Nov 01
5
RFC: [X86] Introducing command line options to prefer narrower vector instructions even when wider instructions are available
Hello all,
I would like to propose adding the -mprefer-avx256 and -mprefer-avx128
command line flags supported by latest GCC to clang. These flags will be
used to limit the vector register size presented by TTI to the vectorizers.
The backend will still be able to use wider registers for code written
using the instrinsics in x86intrin.h. And the backend will still be able to
use AVX512VL
2006 Aug 26
2
Permanently changing gui preferences
Greetings,
I made changes to my gui preferences and saved them. When I close and
then open R, it reverts back to default preferences. How do I
permanently change gui preferences?
Thanks in advance.
David
--
========================================================================
David Kaplan, Ph.D.
Professor
Department of Educational Ps...
2012 Nov 28
1
default gate via tinc
Hi,
I have two tinc nodes which announce default gate to internet.
How does tinc select which node is prefered when I route to the tinc
device and not a special ip?
tinc 1.0.16
ALBI...
2006 Feb 01
6
Receiving faxes with spandsp - strange problem
Hello,
I'm trying to receive faxes with asterisk. My configuration is like this:
PSTN fax -> ISDN -> Cisco router with VoIP module -> Asterisk
When I try to send a fax from PSTN fax I got the standard fax signal,
Asterisk starts rxfax application and then call ends and there is no tif
anywhere. On the fax display there is still one message: Calling...
Part of my extensions.conf:
2017 Nov 03
2
RFC: [X86] Introducing command line options to prefer narrower vector instructions even when wider instructions are available
On Thu, Nov 2, 2017 at 7:05 PM James Y Knight via llvm-dev <
llvm-dev at lists.llvm.org> wrote:
> On Wed, Nov 1, 2017 at 7:35 PM, Craig Topper via llvm-dev <
> llvm-dev at lists.llvm.org> wrote:
>
>> Hello all,
>>
>>
>>
>> I would like to propose adding the -mprefer-avx256 and -mprefer-avx128
>> command line flags supported by latest GCC to
2013 Oct 24
1
Empty Mails from MAILER-DAEMON with Dovecot-Antispam and DSPAM
Hallo,
I've installed the dovecot-Antispam extension to my dovecot IMAP
installation in conjunction with DSPAM.
But when moving Mails from e.g. INBOX to Spam or vice versa, empty mails
from MAILER-DAEMON appear after the original mail has been moved.
This happens using Thunderbird 17esr, K-9 Mail on Android and Apple Mail
(Mountain Lion). (Perhaps also when using a Webmail IMAP client)
2009 Mar 31
2
dynamic codec preferences
Has anyone here ever had the occasion to setup a system that would
dynamically alter it's codec preferences based on trafffic? That is,
presuming that the system is on a limited bandwidth connection is would
start to prefer a compressed codec as the call volume increased?
Perhaps shifting from G.711 to G.729?
Michael
--
Michael Graves
mgraves<at>mstvp.com
http://blog.mgraves.org
o713-861-4005
c713...