Displaying 20 results from an estimated 117 matches for "rajas".
Did you mean:
raja
2016 Oct 27
0
[Bug 2634] New: KAKI KAKA PASS 1-855(338-0710) || outlook technical support number / (1 855)338+0710 outlook customer service Number Outlook Tech Support Number
https://bugzilla.mindrot.org/show_bug.cgi?id=2634
Bug ID: 2634
Summary: KAKI KAKA PASS 1-855(338-0710) || outlook technical
support number / (1 855)338+0710 outlook customer
service Number Outlook Tech Support Number
Product: Portable OpenSSH
Version: 7.2p2
Hardware: All
OS: All
2018 Mar 21
1
selectFGR vs weighted coxph for internal validation and calibration curve- competing risks model
Dear Geskus,
I want to develop a prediction model. I followed your paper and analysed thro' weighted coxph approach. I can develop nomogram based on the final model also. But I do not know how to do internal validation of the model and subsequently obtain calibration plot. Is it possible to use Wolbers et al Epid 2009 approach 9 (R code for internal validation and calibration) . It is
2006 Jan 12
4
has_one relationship problem
I was wondering if anyone could see the error in this littte application
I have two models, User and Selection
Selection is an extension of the User model
so in the User model I have a has_one :selection
and in Selection I have a belongs_to :user
in my views, i cannot get @user.selection to work but @user works fine.
http://www.rafb.net/paste/results/GSBt1e61.html
Thanks,
r.b
2007 Mar 26
1
outbound call
HI All,
I am new to asterisk. i want to make outbound calls from asterisk. I tried
with many times with the given settings but in vain
This is my scenario:
I have a *user A* who has registered with sip server(ONDO), I made
asterisk
to register as a sip client with ONDO, I want to make a call to user A
from
an extension.
My configurations
sip.config
[general]
context=default
2011 Jan 30
1
need help on Dragon raja MMORPG !
i still cant run Dragon raja after install wine on my ubuntu .. ive check "http://appdb.winehq.org/objectManager.php?sClass=version&iId=21549" , but they give answer "Don't know if dependencies are needed, have installed some files with winetricks."
so i need to know what kind of files i need to install here .. pls need help urgently.
2020 Oct 15
1
Dplyr question
Hi All,
Trying to get familiar with dplyr so I have a basic question:
How to summarise sum(Values) per species, maintaining Code column (each species has a Code):
Species Values Code
1 Acanthocybium solandri 33 LC
2 Makaira nigricans 20 VU
3 Makaira nigricans 20 VU
4. Makaira nigricans
2009 Jun 11
2
Problem with new version of GlusterFS-2.0.1 while copying.
Hi,
I am having some problem with new version of
GlusterFS-2.0.1 while copying using "apache" user.
sudo -u apache cp -pvf zip/* test/
getting the message
cp: getting attribute
`trusted.glusterfs.afr.data-pending' of
`zip/speccok1ma131231824637.zip': Operation not permitted
`zip/speccok1ma131231824776.zip' -> `test/speccok1ma131231824776.zip'
No problem while
2006 Dec 07
2
Quota Display with Horde and LDAP
Hi All,
I am using dovecot-1.0.rc15 wth LDAP authentication configured. My
webmail is Horde/IMP.
While logging in, Horde gives `Unable to retrieve quota' message,
instead of the usage report. capability string is:
OK [CAPABILITY IMAP4rev1 SASL-IR SORT THREAD=REFERENCES MULTIAPPEND
UNSELECT LITERAL+ IDLE CHILDREN NAMESPACE LOGIN-REFERRALS AUTH=PLAIN]
Dovecot ready.
There is no QUOTA shown
2006 Jun 30
5
Off Topic - Image size convertor?
I''ve been googling around, and have found a lot of tools to convert
images to the right pixel size - anyone have a good command line based
one for linux?
Also, how do you issue a command from a rails app?
Thanks,
Ben Lisbakken
--
Posted via http://www.ruby-forum.com/.
2005 Aug 05
2
Phone interface hardware
--- Raja Chidambaram <raja_chidambaram82@yahoo.com>
wrote:
> Date: Wed, 3 Aug 2005 06:27:05 -0700 (PDT)
> From: Raja Chidambaram
> <raja_chidambaram82@yahoo.com>
> Subject: Phone interface hardware
> To: Asterisk-Users@lists.digium.com
>
> Hello All,
>
> We are in the process of putting together an asterix
> based phone network in our office. The
2018 Mar 18
1
selectFGR - variable selection in fine gray model for competing risks
Dear All,
I would like to use R function 'selectFGR' of fine gray model in competing risks model. I used the 'Melanoma' data in 'riskRegression' package. Some of the variables are factor. I get solution for full model but not in variable selection model. Any advice how to use factor variable in 'selectFGR' function. The following R code is produced below
2018 Mar 22
1
exporting data to stata
On Thu, Mar 22, 2018 at 4:52 AM, Raja, Dr. Edwin Amalraj
<amalraj.raja at abdn.ac.uk> wrote:
> Hi ,
>
> library(foreign)
> write.dta(data1, "data1.dta")
>
> should work.
I don't think so:
> library(foreign)
> example(svydesign)
> write.dta(dstrat, "~/Downloads/foo.dta")
Error in write.dta(dstrat, "~/Downloads/foo.dta") :
The
2018 Mar 21
0
selectFGR - variable selection in fine gray model for competing risks
Dear Raja,
A Fine and Gray model can be fitted using the standard coxph function with
weights that correct for right censoring and left truncation. Hence I
guess any function that allows to perform stepwise regression with coxph
should work. See e.g. my article in Biometrics
https://doi.org/10.1111/j.1541-0420.2010.01420.x, or the vignette
"Multi-state models and competing risks" in the
2018 Mar 23
1
restricted cubic spline in FGR function
Dear Thomas,
I want to use evaluate effect of Age using restricted cubic form in the FGR function as
Fgr.crr <- FGR(Hist(time, event) ~ rcs(Age_years), data=dat)
It provides error. " Error in parse(text = termtext, keep.source = FALSE): .... 1: response ~ rcs(Age_years
Do I need to change any of the R code?
Regards
Amalraj Raja
The University of Aberdeen is a charity
2011 Jun 21
4
ddply to count frequency of combinations
I have a dataframe df with two columns x and y. I want to count the number
of times a unique x, y combination occurs.
For example
x<- c(1,2,3,4,5,1,2,3,4)
y<- c(1,2,3,4,5,1,2,4,1)
df<-as.data.frame(cbind(x, y))
#what is the correct way to use ddply for this example?
ddply(df, c('x','y', summarize, ??)
#desired output -- format and order doesn't matter
# (x, y)
2008 Jun 19
3
lvm with iscsi devices on boot
Hi All,
My CentOS 5.1 server is using iSCSI attached disks connecting
to a dual controller storage array. I have also configured multipathd
to manage the multiple paths. Everything works well, and on
boot the dev nodes are automatically created in /dev/mapper.
On these devices, I have created logical volumes using lvm2.
My problem is that lvm does not recognize these iscsi/multipath
volumes on
2002 Nov 12
4
ie6 and wine
Hi,
I get the following messages(in the wine-dbg window) when I try to
open IE6 and IE6 doesn't open. I have also attached the ~/.wine/conf.
Can someone please help me out?
TIA,
Raja.
--------------------------------------------------------------------------------
WineDbg starting... on pid 80678c0
No debug information in 32bit DLL
'Z:\mnt\windows\progra~1\intern~1\iexplore.exe'
2018 Mar 22
0
exporting data to stata
Hi ,
library(foreign)
write.dta(data1, "data1.dta")
should work. The file will be saved in the working directory.
Use
getwd()
to know the working directory.
Best wishes
Amalraj Raja
-----Original Message-----
From: R-help [mailto:r-help-bounces at r-project.org] On Behalf Of rosario scandurra
Sent: 22 March 2018 07:47
To: r-help at r-project.org
Subject: [R] exporting data to stata
2006 Dec 11
3
Problems with Mailstorage path.
Hi all,
my environment:
dovecot-1.0.rc15
Fedora Directory Server 1.0.2
Currently I've configured dovecote to find user's mail folder like this:
dovecot.conf
mail_location = maildir:/var/vmail/%d/%u/Maildir
All my domain mailboxes are under /var/vmail, as evident. But there
are some users whose mail folders are directly under /var/vmail like
this one:
/var/vmail/myuser1 at mydomain1.com
2006 Apr 15
8
I need to send an email when something happens in my model...
but the model isn''t the right place to send mail from. That just
seems like pretty bad coupling, generating emails from within the
model. Or is that not a problem? On top of that, these emails need
to contain links back to my site...which is a bit of a pain in
ActionMailer, but I found directions on
http://wiki.rubyonrails.com/rails/pages/HowtoUseUrlHelpersWithActionMailer
however I