similar to: Suitable package for carrying out sigma and beta convergence in panel data

Displaying 20 results from an estimated 1100 matches similar to: "Suitable package for carrying out sigma and beta convergence in panel data"

2008 Oct 18
5
Getting names of variables without quotes
  Dear R-helpers, hello I am seeking your help in somehow getting names of variables without quotes (" "). Let us say, we have a table with 3 variables V1, V2 and V3. After the table is read, I get names of the variables (thro' the following code) as under quotes (like "V1" rather than the original representation V1)  
2008 Oct 24
1
Repetitive correlation test
Dear all, Through the following code, I wanted to perform correlation test repetedly (through loop) on different combinations of variables of a data set. Code: x=read.table("sample.txt",header=T,sep="\t") out="corout.txt" sink(out) nm = names(x) print(nm) nvr=3 # nvr=Total no. of variables in the input data file for (i in 1:(nvr-1)) { for(j in (i+1):nvr) { frm=
2023 Jul 11
1
Base R Stats Package - quantile function
Hi, In Base R Stats Package, the quantile function has 9 Type's: ?quantile I'd be very grateful if simple numerical examples (ideally from members of the R core team), for each of the 9 methods, both for EVEN and ODD numbered length's of series, be provided. thanks, Amarjit [[alternative HTML version deleted]]
2008 May 24
2
Importing data in text file into R
Dear all, I am quite new to R; facing certain problems: Say, I have a text file( named as "try"): Year C1 C2 C3 C4 C5 C6 Y1 3.5 13.8 9.5 6.8 0.4 24.2 Y2 3.8 13.9 9.9 7.6 0.7 12.8 Y3 4.5 14.5 14.2 9.2 0.6 14.5 Y4 5.9 16.2 24.6 12.7 0.2 24.3 Y5 7.2 20.4 40.6 18.2 0.8 28.2 Y6 5.9 18.6 37.4 14.5 0.3 36.9 Y7 8.0 16.1 88.6 24.1 0.1 34.6 Y8 13.6 21.1 56.3 19.0 0.7 33.3 I wish to import the
2012 Jul 04
3
Printing from R Console in colour
Hi,I want to be able to print in colour from the R console i.e. commands (in navy) with results (in red) as on the console.   From the console if I click on File -> Print, the commands with results print on my printer but only in monochrome, not in colour. Similarly, if I Edit -> Select All, Edit -> Copy --- and paste into Word, the commands and results are only in monochrome, not in
2013 Sep 24
0
[LLVMdev] MI Scheduler Update (was Experimental Evaluation of the Schedulers in LLVM 3.3)
On Sep 17, 2013, at 11:04 AM, Ghassan Shobaki <ghassan_shobaki at yahoo.com> wrote: > 1. The SD schedulers significantly impact the spill counts and the execution times for many benchmarks, but the machine instruction (MI) scheduler in 3.3 has very limited impact on both spill counts and execution times. Is this because most of you work on MI did not make it into the 3.3 release?
2003 Sep 06
1
Fitting t-Student(mu, sigma, nu)
Dear R users: 1. Is there a function which fits to the data the t-student distribution with parameters mu, sigma, nu. Is the function fitdistr of MASS with the syntax fitdistr(x, "t") appropriate for this? 2. Is there a function which can fit the exponential power distribution? Thanks. --------------------------------- ÁðïêôÞóôå ôçí äùñåÜí óáò@yahoo.gr [[alternative
2008 Nov 19
1
mle2 simple question - sigma?
I'm trying to get started with maximum likelihood estimation with a simple regression equivalent out of Bolker (Ecological Models and Data in R, p302). With this code: #Basic example regression library(bbmle) RegData<-data.frame(c(0.3,0.9,0.6),c(1.7,1.1,1.5)) names(RegData)<-c("x", "y") linregfun = function(a,b,sigma) { Y.pred = a+b*x
2011 Jul 27
2
Expression: +/-sigma
Dear List, I am trying to label a plot with the symbol +/- sigma. Using something like - expression (2*sigma) gives me the symbol 2ó. However, adding +/- to it beats me. The code I am using is: plot(x,y,type="l",main=" expression(paste("±", plain(2*ó)),sep=""). Any suggestion will be appreciated. Best Ogbos [[alternative HTML version deleted]]
2011 Nov 01
1
low sigma in lognormal fit of gamlss
Hi, I'm playing around with gamlss and don't entirely understand the sigma result from an attempted lognormal fit. In the example below, I've created lognormal data with mu=10 and sigma=2. When I try a gamlss fit, I get an estimated mu=9.947 and sigma=0.69 The mu estimate seems in the ballpark, but sigma is very low. I get similar results on repeated trials and with Normal and
2011 May 28
3
Three sigma rule
Dear Sir, I have data, coming from tests, consisting of 300 values. Is there a way in R with which I can confirm this data to 68-95-99.8 rule or three-sigma rule? I need to look around percentile ranks and prediction intervals for this data. I, however, used SixSigma package and used ss.ci() function, which produced 95% confidence intervals. I still am not certain about percentile ranks
2015 Apr 10
1
RFC: sigma() in package:stats ?
I'm proposing to add something like this to the stats package : ---------------------------------------------------------- ### "The" sigma in lm/nls - "like" models: sigma <- function(object, ...) UseMethod("sigma") ## works whenever deviance(), nobs() and coef() do fine: sigma.default <- function (object, use.fallback=TRUE, ...)
2017 Mar 07
0
Potential clue for Bug 16975 - lme fixed sigma - inconsistent REML estimation
Dear list, I was trying to create a VarClass for nlme to work with Fay-Herriot (FH) models. The idea was to create a modification of VarComb that instead of multiplying the variance functions made their sum (I called it varSum). After some fails etc... I found that the I was not getting the expected results because I needed to make sigma fixed. Trying to find how to make sigma fixed I run into
2011 Feb 24
2
Carrying context from one server to another?
The relevant part of my setup is something like: SIP phones -> local server -> remote server -> SIP-to-PSTN provider I want _some_ of the SIP phones on the local server to be able to get access to SIP-to-PSTN, but not all of them. The local-to-remote connection is IAX2 over VPN. Do I need to set up two separate IAX2 connections, one "privileged" and the other not, or can I
2008 Sep 21
2
Variable Selection for data reduction and discriminant anlaysis
Hello all, I'm dealing with geochemical analyses of some rocks. If I use the full composition (31 elements or variables), I can get reasonable separation of my 6 sources. Then when I go onto do LDA with the 6 groups, I get excellent separation. I feel like I should be reducing the variables to thos that are providing the most discrimination between the groups as this is important
2005 May 19
1
OT: carrying a router, firewall, switch, ser ver, some phones with me on flight to Europe
Well here's a suggestion - a little crazy - but works... Most equipment is taking the 120vac and converting it into DC voltage. So why not just feed it DC voltage directly??? We had a situation where our field techs needed to test dsl circuits and voip ata from the demarcation point outside a house or business. A UPS might have worked - but the down conversion of 12v dc battery in ups up to
2005 May 18
4
OT: carrying a router, firewall, switch, server, some phones with me on flight to Europe
Dear Fellow *-ers, First, you guys are fantastic. Keep fighting the good fight. Second, it sounds like comments in the code are coming, which sounds welcome by all, even those of us who couldn't code their way out of a papersack, but who need to read the source. Last, I might be traveling to Europe (from US) & want to tow along hardware & haven't done this before & was
2008 Jun 12
8
Urgent Help Required!!!!!!!!!!!
&nbsp; Hi All, &nbsp; I am Rajeev. I have download centOS 5.1 i386 files for installing Linux. I tried my ways but my DVD is not getting recognised while booting. I have windows XP SP2 32-bit. Let me know the files that need to be burned for installing centOS 5.1 i386. &nbsp; Queries : 1. Whether I need to burn the files in CD or DVD? 2. I have download&nbsp;9 iso files, 3 torrent
2008 Dec 11
5
Linux Software to monitor quality of bandwidth for carrying voip traffic - suggestions please?
Hi, Would like to run the software to monitor the quality of the bandwidth. Suggestions welcome? Thank you. Shaun -------------- next part -------------- An HTML attachment was scrubbed... URL: http://lists.digium.com/pipermail/asterisk-users/attachments/20081211/85bd0069/attachment.htm
2006 Jul 20
2
Carrying model date from one page to the next
I am working on a crude first-go-round-in-rails shopping cart and can''t figure out for the life of me the best way to do this. I have a shopping cart that has one page during the checkout that handles the address information, then the next handles the actual credit card information. How do I take the information from the address form and keep it alive long enough to put it in to