Uncategorized

Shelly Goodin 0
SAS Author's Tip: A Typical Clinical Trial Table

This week's featured tip from SAS Press author Jack Shostak should spark the interest of those of you working in the pharmaceutical or clinical trials industries. While I'm not a programmer, myself, Jack's book has been consistently described as being accessible, practical, and helpful for both beginners and advanced SAS

0
SAS Books: Always There for You

Receiving a student scholarship to attend PharmaSUG 2011 provided me with an amazing opportunity. It allowed me to look into an aspect of SAS that I may not have otherwise been able to. I got to see how SAS was used in the pharmaceutical industry, and see how I could

Analytics
Vincent Talucci 0
The police police

Policing has profoundly changed over the last several decades and its evolution will continue as long as there are crimes to commit and communities to serve. The very nature of policing is dynamic – it always has been and always will be. Those dynamics are driven by many things –

Rick Wicklin 0
Use subscript reduction operators!

Writing efficient SAS/IML programs is very important. One aspect to efficient SAS/IML programming is to avoid unnecessary DO loops. In my book, Statistical Programming with SAS/IML Software, I wrote (p. 80): One way to avoid writing unnecessary loops is to take full advantage of the subscript reduction operators for matrices.

Customer Intelligence
David Wallace 0
Everything old CAN be new again!

The first-annual SPARK! Financial Services Executive Summit used an unexpected approach to collaboration to generate unconventional ideas about the future of financial services. The ideas came from enthusiastic and engaged senior executives from across the financial services industry who are all committed to improving the industry’s image in the eyes

Rick Wicklin 0
The trapezoidal rule of integration

In a previous article I discussed the situation where you have a sequence of (x,y) points and you want to find the area under the curve that is defined by those points. I pointed out that usually you need to use statistical modeling before it makes sense to compute the

Analytics | Risk Management
Leo Sadovy 0
A Plethora of Black Swans

I was under the impression that Black Swans were supposed to be rare. Rare enough to be effectively non-computable by standard methods. Nassim Taleb’s formulation of the Black Swan Theory is comprised of the three traits of: outlier (rarity), extreme impact, and retrospective predictability (i.e. 20/20 hindsight). I write this

Sandy Varner 0
Inside BEA 2011: Day 3

I promised myself that I would not collect any take home books until Thursday. So much for promises! While walking through the BEA 2011 show floor there were titles that had my name on them. I can barely carry my bag. I visited some local reseller booths such as Duke

Sandy Varner 0
BEA Report: Day Two

During his presentation at Book Expo 2011 (BEA) yesterday, Michael Norris, from Simba Information, declared "the print book will not die - you can write my name by that statement." Forty-eight percent of Americans did not buy a book last year. That is an audience we need to reach. New

Sandy Varner 0
BEA 2011: First Day Impressions

I spent my first day at Book Expo (BEA) at the International Digital Publishing Forum (IDPF) conference. There were good presentations but the one that gave me an 'aha' moment was on e-reading devices presented by Gartner. Allen Weiner from Gartner prefaced his predictions by asking what customers need. They

Frank Leistner 0
Beyond the technical aspects of knowledge management

Often-cited reasons for writing a book remind me of what detectives name as two factors necessary for committing a crime: motive and opportunity. I certainly had a strong motive for writing a book. I had been discussing knowledge sharing and running SAS knowledge flow initiatives for over a decade. Opportunity

Rick Wicklin 0
Listing SAS/IML variables

Did you know that you can display a list of all the SAS/IML variables (matrices) that are defined in the current session? The SHOW statement performs this useful task. For example, the following statements define three matrices: proc iml; fruit = {"apple", "banana", "pear"}; k = 1:3; x = j(1E5,

1 264 265 266 267 268 311