If you want to skip analytics on checkout pages, then chances are you also don't care about them on "My Account" or "Login" pages either. So therefore you could simply change your custom analytics code to not display when the PHP variable named $request_type is not set to 'SSL':

Code:
if ($request_type != 'SSL') {
 // put analytics code here
}