Hit Your IT Knowledge Targets!

What I love most about the SAS community is the willingness to share information. I asked Tom Karl – how do you stay current with the complete deluge of new tools (Hadoop, Spark) and methods that are streaming toward you all the time.  He offered some advice and then I strong-armed (playground technique!) him into writing a blog post!  And yes Tom – you are invited …

Post Hit Your IT Knowledge Targets! appeared first on BI Notes for SAS® Users. Go to BI Notes for SAS® Users to subscribe.

[[ This is a content summary only. Visit my website for full links, other content, and more! ]]

More Flash in Chrome for Less Power … and the HTML5 Migration

If you use one of SAS’s web interfaces you’ll be a great fan of the flexibility and usability of the user interface. And those capabilities are probably provided by Adobe Flash. Your browser is running the Flash plug-in.

But Flash has one or two downsides, principally its tendency to use lots of CPU cycles which in-turn uses lots of battery power. Not a problem maybe if you’re hooked to the mains, but not good on a laptop of mobile phone/tablet.

If you use the Chrome browser you’ll be pleased to hear that Google are improving Chrome’s power consumption when Flash is running. When you’re on a webpage that runs Flash, Chrome will intelligently pause content, e.g. Flash animations, that aren’t central to the webpage, while keeping central content (like a video) playing without interruption. If Chrome accidentally pause something you were interested in, you can just click it to resume playback. This update significantly reduces power consumption, allowing us to do analytics on-the-go for longer before having to hunt for a power outlet.

This feature was enabled by default on Chrome’s desktop Beta channel in June, and will be rolling out soon to everyone else on Chrome desktop.

Looking longer-term, SAS are replacing their use of Flash with HTML5. Whilst the use of Flash requires a plug-in from Adobe, HTML5 is supported by all modern browsers out-of-the-box, with no need for any plug-in. The majority of web sites and vendors are migrating to HTML5 due to its net neutrality and power-consumption benefits. SAS Studio already uses HTML5; Visual Analytics and Visual Statistics currently use Flash. We can expect a migration to HTML5, perhaps starting with the VA hub this summer, which will probably be complete next year.


Follow me on Twitter: @aratcliffeuk

SAS Combinatorial Functions: Snippets

1. Permutation and Combination data _null_;     n = 5;     r = 2;    *the factorial of a number;    fact=fact(n);    *for positive integers, fact(n) = gamma(n+1);    gamm=gamma(n + 1);    *C(n,r): number of combinations of n objects selected r ;    *n! / [r!(n-r)!];    comb1 = comb(n,r);    comb2 = […]

Pyramids, body parts, and gender differences

Nope – we’re not digging up mummies in pyramids and analyzing the gender – this blog is about population pyramid charts and “digging into data”! But since the title might have lured in some pyramid fans, here’s a picture of my friend Angela posing beside a pyramid – pretty cool, eh?!? […]

The post Pyramids, body parts, and gender differences appeared first on The SAS Training Post.