similar to: Fitting with Beta-prime

Displaying 20 results from an estimated 1000 matches similar to: "Fitting with Beta-prime"

2009 Apr 29
3
mode(x) <- "double"
Hi, I need your help!! I imported a big coloumn vector from a txt file but it results as mode :"list" I want to change it in numeric otherwise I can't do my analysis. This is what i get: mode (data) <- "double" Error in eval(expr, envir, enclos) : (list) object cannot be coerced to type 'double' > Thanks a lot!!! Alessandra -- View this message in
2006 Oct 27
0
VGAM package released on CRAN
Dear useRs, upon request, the VGAM package (currently version 0.7-1) has been officially released on CRAN (the package has been at my website http://www.stat.auckland.ac.nz/~yee/VGAM for a number of years now). VGAM implements a general framework for several classes of regression models using iteratively reweighted least squares (IRLS). The key ideas are Fisher scoring, generalized linear and
2009 Jun 29
2
re moving value from a vector
Hallo, I have a vector of several iterations and I have to remove /filter out all the values < than 10, how can I do this? Thanks a lot Alessandra -- View this message in context: http://www.nabble.com/removing-value-from-a-vector-tp24250608p24250608.html Sent from the R help mailing list archive at Nabble.com.
2012 Mar 13
2
beginner's loop issue
Dear All, I hope you don't mind helping me with this small issue. I haven't been using R in years and I'm trying to fill in a matrix with the output of a function (I'm probably using the Matlab logic here and it's not working). Here is my code: for (i in 1:length(input)){ out[i,1:3] <- MyFunction(input[i,1],input[i,2], input[i,3]) out[i,4:6] <-
2010 Feb 04
0
Prediction intervals for beta regression
Dear all, I am trying to get an estimate of uncertainty surrounding a single predicted value from a beta regression model (this is similar to a logistic glm - in that it involves a link function and linear predictor - but it uses the beta distribution rather than discrete binomial). For example: library(betareg) data("GasolineYield")
2009 May 09
1
for loop
Hi, I need your help. I have a vector of numbers reflecting the switch in the perception of a figure. For a certain period I have positive numbers (which reflect the perception A) then the perception changes and I have negative numbers (perception B), and so on for 40000 iterations. I need to take the rate of this switch for my analysis. Namely, I need a new vector with numbers which reflect how
2009 Jul 03
3
Histogram
Hallo, How can I have the control of the width of each bin in the histogram? I would like to plot my data modifying the number and the width of the bins. Is there a good pdf or manual where i can learn to use the plot/hist in R very well? I find the help not always clear Thanks a lot Ale -- View this message in context: http://www.nabble.com/Histogram-tp24325261p24325261.html Sent from the R
2009 Jul 07
2
rle
Hallo, I have an other problem, I have this vector signData with an alternation of 1 and -1 that corrispond to the duration of two different percepts. I extracted the durations like this: signData<- scan("dataTR10.txt") dur<-rle(signData)$length Now I would like to extract only the positive duration, e.g. signData <- c(1,1,1,1,-1,-1,-1,1,1,-1,-1) posduration <- c(4,2) I
2010 Jan 18
1
[PATCH 1/2] nv30-nv40: Rewrite primitive splitting and emission
The current code for primitive splitting and emission on pre-nv50 is severely broken. In particular: 1. Quads and lines are totally broken because "&= 3" should be "&= ~3" and similar for lines 2. Triangle fans and polygons are broken because the first vertex must be repeated for each split chunk 3. Line loops are broken because the must be converted to a line strip,
2008 Feb 04
2
maybe a bug in the system.time() function? (PR#10696)
Full_Name: Alessandra Iacobucci Version: 2.5.1 OS: Mac OS X 10.4.11 Submission from: (NULL) (193.48.71.92) Hi, I am making some intensive simulations for the testing of a Population Monte Carlo algorithm. This involves also a study of the CPU times in two different case. What I am trying to measure is the "real" CPU time, the one which is independent on the %CPU. I'm using the
2007 Jun 21
0
mISDN problems
Hi all, we're buildin an Asterisk box based on an Intel IXP425 board. The board uses a Beronet BN2S0 ISDN card, mISDN 1.1.4 and asterisk 1.4.2. hfc_multi has been patched to compile under big endian cpu, and so also capi kernel files. All the modules seem to load correctly (configuration was made with misdn-init config), but when starting cha_misdn, asterisk outputs the following lines: P[ 1]
2010 Jun 10
2
ISDN -> SIP
i am using asterisk 1.6.2 with mISDN and a passive AVM Fritz!card on CentOS 5.5. The only thing, i want to do is a call-redirection from an isdn-call to my mobile via sip-account. My extension conf is: general] static=yes writeprotect=no [globals] OUT_PORT=1 [ISDN] exten => 12345,1,Dial(SIP/012346737222 at sipprovider.local) If i call to the msn 12345, the SIP-call is going out, but after
2008 Nov 05
0
b410p mIDSN - RNIS signaling problems
Hi. I'm running Asterisk server with 10 sip phones, and 2 grouped T0 lines with 10 DDI numbers. My provider is France Telecom and my setup is : - Debian Lenny - Asterisk 1.4 - Linux kernel 2.6.25.17 - mISDN 1.1.8 driver - Sip phones Thomson ST2030 No problem with the SIP . But when reveiving a call on RNIS line (any of the DDI numbers), the associated SIP phone rings indicating _two_
2007 Feb 09
0
Misdn instability with asterisk 1.4
recently i've upgraded asterisk from 1.2.4 to 1.4 All works fine but i'me experencing some instability on misdn channels. In the last week i've experienced twice some problems with misdn (I am using mISDN-1_0_4) dmesg output: mISDN_rdata: rport queue overflow 256/256 [addr:52020501 prim:120282 dinfo:ffffffff] mISDN_rdata: rport queue overflow 256/256 [addr:52020501 prim:120282
2009 Feb 06
0
set caller id on outgoing calls through BRI ISDN lines
I'm trying to set caller ids on outgoing calls. I have a quad BRI B410P card connected to my telephony provider. I know the list of DID numbers the provider assigned to my company. If I don't set the caller id then the callee always sees the same "top-level" number. If I set the caller id to a specific DID number we own, the callee keeps seeing the "top-level" number,
2009 Feb 06
1
set caller id on outgoing calls through BRI ISDNlines
Use Set(CALLERID(num)=9999999999) instead of using CALLERID(all). Remember to set this BEFORE you Dial. -->> -----Original Message----- -->> From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users- -->> bounces at lists.digium.com] On Behalf Of Vieri -->> Sent: 06 February 2009 12:36 -->> To: asterisk-users at lists.digium.com -->>
2006 Jun 08
1
BN8S0 problem - Extension can never match, so disconnecting
hi i've configured a Beronet BN8S0 Card with misdn beronet utility. the card is configured with all lines in TE and P2P mode, and it is connected with the special cable with an ISDN connection. i've turned on debugging to level 4, this is the output from the asterisk cli when i receive a call: P[ 5] MGMT: Short status dinfo 1000001 P[ 5] MGMT: SSTATUS: L1_ACTIVATED P[ 5] handle_frm:
2009 Feb 06
1
set caller id on outgoing calls through BRIISDNlines
You're quite right. We'll need to see your misdn.conf file to check the settings. -->> -----Original Message----- -->> From: asterisk-users-bounces at lists.digium.com [mailto:asterisk-users- -->> bounces at lists.digium.com] On Behalf Of Vieri -->> Sent: 06 February 2009 13:49 -->> To: asterisk-users at lists.digium.com -->> Subject:
2006 Feb 09
1
Polycom remapping SpeedDials
Hi - Has anybody been able to successfully remap SpeedDials on Polycom phones? The manual seems to indicate that you can, and I followed the advice in this list message: http://lists.digium.com/pipermail/asterisk-users/2005-October/129142.html The result I get is that the remapped buttons act as the VolumeUp button, rather than as a speed dial. My configs look like this: <Mac
2007 Sep 14
1
Print to file
Hello list I'M new I need help about print to file How i can Print more table in a file (in append) using xtable and print functions? Tanks Alessandra