[This article was first published on The Pith of Performance, and kindly contributed to R-bloggers]. (You can report issue about the content on this page here)
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
As already described previously, the main purpose of Release 6.0.1 Build 121512 is improved compatibility and stability between PDQ and the R statistical environment. For example, many of the PDQ models, previously found in the ../examples/ directory, can now also be accessed via the demo() command in the R-console. Testing was carried out using R version 2.15.2 (2012-10-26). Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.
Operationally, PDQ, in any of the supported languages, should appear cosmetically the same as Release 5.0; no additional programming required. Since the PDQ-R source can be compiled separately, this release will be of special interest to Microsoft Windows users.
If you’re new to PDQ, here’s a simple PDQ-R model you can paste directly into the R-console:
library(pdq) # input parameters arrivalRate <- 0.75 serviceRate <- 1.0 ## Build and solve the PDQ model Init("Single queue model") # initialize PDQ CreateOpen("Work", arrivalRate) # open workflow CreateNode("Server", CEN, FCFS) # single server SetDemand("Server", "Work", 1/serviceRate) # service time Solve(CANON) # solve the model Report() # tabulated outputPlease see the online release notes for the download links and more detailed information, as well as the top-level README file in the distribution. Beyond that, check out the relevant books and training classes.
Merry Xmas from the PDQ Dev Team!
To leave a comment for the author, please follow the link and comment on their blog: The Pith of Performance.
R-bloggers.com offers daily e-mail updates about R news and tutorials about learning R and many other topics. Click here if you're looking to post or find an R/data-science job.
Want to share your content on R-bloggers? click here if you have a blog, or here if you don't.