English

Data Visualization | Students & Educators
Georgia Mariani 0
Community college answers complex ‘why’ questions with data visualization and analytics

Reporting can reveal last year’s graduation rates or this semester’s completion rates at a local community college. But drilling further into that data to ask why students aren’t graduating or why they aren’t enrolling requires more complex analysis. At Sinclair Community College in Dayton, Ohio, college administrators and professors are

Rick Wicklin 0
Absorbing Markov chains in SAS

Last week I showed how to represent a Markov transition matrix in the SAS/IML matrix language. I also showed how to use matrix multiplication to iterate a state vector, thereby producing a discrete-time forecast of the state of the Markov chain system. This article shows that the expected behavior of

Data Management
Jim Harris 0
Modernization and data-driven culture – Part 1

Modernization is a term used to describe the necessary evolution of information technologies that organizations rely on to remain competitive in today’s constantly changing business world. New technologies – many designed to better leverage big data – challenge existing data infrastructures and business models. This forces enterprises to modernize their approach to data

Learn SAS
Rick Wicklin 0
Break a sentence into words in SAS

Two of my favorite string-manipulation functions in the SAS DATA step are the COUNTW function and the SCAN function. The COUNTW function counts the number of words in a long string of text. Here "word" means a substring that is delimited by special characters, such as a space character, a

Data Visualization
Sanjay Matange 0
Polar Graph - Wind Rose

Last week I posted an article on displaying polar graph using SAS.  When the measured data (R, Theta) are in the polar coordinates as radius and angle, then this data can be easily transformed into the XY space using the simple transform shown below.     x=r*cos(theta * PI / 180);     y=r*sin(theta * PI

Programming Tips
Rob Collum 0
About LASR Load Balancing

The Distributed SAS 9.4 LASR Analytic Server provides a massively parallel processing solution for working very quickly with huge volumes of data. LASR was built from its earliest invocations to provide for incredible scalability and growth. One of the primary criteria which drives the considerations of scalability is load management.

Rick Wicklin 0
Markov transition matrices in SAS/IML

Many computations in elementary probability assume that the probability of an event is independent of previous trials. For example, if you toss a coin twice, the probability of observing "heads" on the second toss does not depend on the result of the first toss. However, there are situations in which

1 171 172 173 174 175 328