Displaying 8 results from an estimated 8 matches similar to: "Reconcile Random Samples"
2009 Feb 25
4
Have a function like the "_n_" in R ? (Automatic count function )
Have the counter function in R ?
if we use the software SAS
/*** SAS Code **************************/
data tmp(drop= i);
retain seed x 0;
do i = 1 to 5;
call ranuni(seed,x);
output;
end;
run;
data new;
counter=_n_; ***** this keyword _n_ ****;
set tmp;
run;
/*
_n_ (Automatic variables)
are created automatically by the DATA step or by DATA step statements.
*/
/*** Output
2008 Jun 23
3
Simulating Gaussian Mixture Models
Hi,
Is there any package that I can use to simulate the Gaussian
Mixture Model , which is a mixture modeling method that is widely used
in statistical learning theory.
I know there is a mclust, however, I think it is a little bit
different from my problem.
Thanks very much..
regards.
--------------------------
Peng Jiang
??
Ph.D. Candidate
Antai College of Economics &
2006 Mar 27
0
Graded Response Model Simulation (SAS code conversion)
I have used R a lot in the past, but never for simulation. I have a code in SAS for the Graded Response Model (GRM), also known as Samejima's model. This code simulates an ordinal response, provided item characteristics (A=item discrimination, BB(G) are thresholds between various categorical responses). It is a macro file. I am thinking that I can write this as a function, and call it up
2008 Jun 12
1
How do you reconcile foreign keys for forms?
Hi all,
I''m looking to resolve foreign keys for forms -- similar to the way
"streamlined" does it. Although the actual value stored in an object
is the foreign key integer, I''d like the actual name of the item
displayed.
I''m *sure* it''s easy. Thoughts?
Regards.
--~--~---------~--~----~------------~-------~--~----~
You received this message because
2011 Jun 03
0
How to reconcile Kalman filter result (by package dlm) with linear regression?
Hello All,
I am working with dlm for the purpose of estimating and forecasting with a Kalman filter model. I have succesfully set up the model and started generating results. Of course, I need to somehow be sure that the results make sense. Without any apparent target to compare with, my natural selection is the results by odinary least square. The idea being that if I choose a diffuse prior,
2006 Jun 05
4
Swap memory: I can't reconcile this stuff.
I need to look more into it, but before I start the long and arduous
"googling my life away" process, I figured someone might know the
answer. I've read the man pages several times and they didn't change!
:-(
As normal, while looking at one thing, something else bites my butt. I
tuned on the swap field in top and sort on it. Here's an edited snippet
of the results.
Mem:
2007 Jan 30
2
Comments on Billing reconcillation with providers
Hi,
I just want out find out how to do bill recon's when you send calls to a provider. They send me
their CDR's, and when I compare it to my * CDR's, some calls are 1 second off, either way.
How in general is it done by others?
--
thanks,
Yusuf
2009 Dec 09
1
Why cannot get the expected values in my function
Hi,
In the following function, i hope to save my simulated data into the
"result" dataset, but why the final "result" dataset seems not to be
generated.
#Function
simdata<-function (nsim) {
result<-matrix(NA,nrow=nsim,ncol=2)
colnames(result)<-c("x","y")
for (i in 1:nsim) {
set.seed(i)
result[i,]<- cbind(runif(1),runif(1))
}