IdentifiantMot de passe
Loading...
Mot de passe oublié ?Je m'inscris ! (gratuit)
Navigation

Inscrivez-vous gratuitement
pour pouvoir participer, suivre les réponses en temps réel, voter pour les messages, poser vos propres questions et recevoir la newsletter

ODS et reporting Discussion :

Définir son style (PROC TEMPLATE)


Sujet :

ODS et reporting

  1. #1
    Futur Membre du Club
    Profil pro
    Inscrit en
    Juillet 2009
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2009
    Messages : 7
    Points : 7
    Points
    7
    Par défaut Définir son style (PROC TEMPLATE)
    Bonjour,

    Je suis une novice sur les ODS. J'ai commencé à étudier ce sujet que depuis 1 mois et 1/2. Donc j'ai tout à apprendre. J'ai compris en grande ligne comment ça marche.

    En générale, j'exporte mes fichiers en excel via les ODS. Exemple de programme que je fais:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    proc format ;
    value $prod
    "CARTE" = "REVOLVING"
    "PPR"="REVOLVING"
    OTHER="AMORTISSABLE";
    run;
     
    ods html style=minimal body="B:\03_Ma sortie_style_personnalisée.xls";
    ods listing close;
    proc freq data=resultats;	
    table banque3 produit banque3*produit/list missing nocum;
    format produit $prod. ;
    run;
    ods listing;
    ods html close;
    Aujourd'hui j'ai un soucis :
    J'ai regardé les mises en forme (ou style) que l'on peut avoir grâce à la proc template. J'ai bien compris qu'il existe sur SAS des styles prédéfinis (default, minimal,...). Par contre, je ne connais pas du tout cette procédure et du coup je ne sais pas comment créer un style à partir d'un style SAS. Exemple, prendre le style "default" et je veux que les noms des variables soient affichés en caractères gras.

    Voila
    Merci d'avance de vos réponses
    Sissi

  2. #2
    Membre chevronné
    Homme Profil pro
    Biostatisticien
    Inscrit en
    Juin 2009
    Messages
    1 206
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Localisation : Irlande

    Informations professionnelles :
    Activité : Biostatisticien
    Secteur : Industrie Pharmaceutique

    Informations forums :
    Inscription : Juin 2009
    Messages : 1 206
    Points : 1 868
    Points
    1 868
    Par défaut
    voici un exemple:
    Code : Sélectionner tout - Visualiser dans une fenêtre à part
    1
    2
    3
    4
    5
    6
    7
    8
    9
    10
    11
    12
    13
    14
    15
    16
    17
    18
    19
    20
    21
    22
    23
    24
    25
    26
    27
    28
    29
    30
    31
    32
    33
    34
    35
    36
    37
    38
    39
    40
    41
    42
    43
    44
    45
    46
    47
    48
    49
    50
    51
    52
    53
    54
    55
    56
    57
    58
    59
    60
    61
    62
    63
    64
    65
    66
    67
    68
    69
    70
    71
    72
    73
    74
    75
    76
    77
    78
    79
    80
    81
    82
    83
    84
    85
    86
    87
    88
    89
    90
    91
    92
    93
    94
    95
    96
    97
    98
    99
    100
    101
    102
    103
    104
    105
    106
    107
    108
    109
    110
    111
    112
    113
    114
    115
    116
    117
    118
    119
    120
    121
    122
    123
    124
    125
    126
    127
    128
    129
    130
    131
    132
    133
    134
    135
    136
    137
    138
    139
    140
    141
    142
    143
    144
    145
    146
    147
    148
    149
    150
    151
    152
    153
    154
    155
    156
    157
    158
    159
    160
    161
    162
    163
    164
    165
    166
    167
    168
    169
    170
    171
    172
    173
    174
    175
    176
    177
    178
    179
    180
    181
    182
    183
    184
    185
    186
    187
    188
    189
    190
    191
    192
    193
    194
    195
    196
    197
    198
    199
    200
    201
    202
    203
    204
    205
    206
    207
    208
    209
    210
    211
    212
    213
    214
    215
    216
    217
    218
    219
    220
    221
    222
    223
    224
    225
    226
    227
    228
    229
    230
    231
    232
    233
    234
    235
    236
    237
    238
    239
    240
    241
    242
    243
    244
    245
    246
    247
    248
    249
    250
    251
    252
    253
    254
    255
    256
    257
    258
    259
    260
    261
    262
    263
    264
    265
    266
    267
    268
    269
    270
    271
    272
    273
    274
    275
    276
    277
    278
    279
    280
    281
    282
    283
    284
    285
    286
    287
    288
    289
    290
    291
    292
    293
    294
    295
    296
    297
    298
    299
    300
    301
    302
    303
    304
    305
    306
    307
    308
    309
    310
    311
    312
    313
    314
    315
    316
    317
    318
    319
    320
    321
    322
    323
    324
    325
    326
    327
    328
    329
    330
    331
    332
     
    proc template;                                                                
       define style Styles.KaloBiostab;                                               
          parent = styles.default;                                                
          style fonts /                                                           
             'docFont' = ("Courier New",8pt)                      
             'headingFont' = ("Courier New",8pt)           
             'headingEmphasisFont' = ("Courier New",8pt,bold)                                                              
             'FixedFont' = ("Courier New",8pt)                    
             'FixedHeadingFont' = ("Courier New",8pt)      
             'FixedStrongFont' = ("Courier New",8pt,bold)         
             'FixedEmphasisFont' = ("Courier New",8pt,bold italic)
     
             'EmphasisFont' = ("Courier New",8pt,italic)          
             'StrongFont' = ("Courier New",8pt,bold)       
             'TitleFont' = ("Courier New",8pt,bold)        
             'TitleFont2' = ("Courier New",8pt)       
             'SASTitleFont' = ("Courier New",8pt);    
          style GraphFonts /                                                      
             'GraphTitleFont' = ("Courier New",8pt)             
             'GraphFootnoteFont' = ("Courier New",8pt)          
             'GraphLabelFont' = ("Courier New",8pt)             
             'GraphUnicodeFont' = ("Courier New",8pt)                  
             'GraphValueFont' = ("Courier New",8pt)              
             'GraphDataFont' = ("Courier New",8pt)               
             'GraphAnnoFont' = ("Courier New",8pt);             
          style colors /                                                          
             'fg' = cx000000                                                      
             'fg2' = cx000000                                                     
             'fgA1' = cx000000                                                    
             'bgA1' = cxFFFFFF                                                    
             'bg2' = cxFFFFFF                                                     
             'fg3' = cx000000                                                     
             'bg3' = cxFFFFFF                                                     
             'fg4' = cx000000                                                     
             'bg4' = cxFFFFFF                                                     
             'bg5' = cxFFFFFF                                                     
             'link1' = cx004488                                                   
             'link2' = cx0066AA                                                   
             'titlefg' = _undef_                                                  
             'contentfg' = cx000000                                               
             'contentbg' = cxFFFFFF                                               
             'docbg' = cxFFFFFF;                                                  
          style GraphColors /                                                     
             'gablock' = cxE0E0E0                                                 
             'gblock' = cxF2F2F2                                                  
             'gcclipping' = cx000000                                              
             'gclipping' = cxD2D2D2                                               
             'gcstars' = cx000000                                                 
             'gstars' = cxD2D2D2                                                  
             'gcruntest' = cxA3A3A3                                               
             'gruntest' = cxDDDDDD                                                
             'gccontrollim' = cxC2C2C2                                            
             'gcontrollim' = cxF0F0F0                                             
             'gcerror' = cx000000                                                 
             'gerror' = cxA0A0A0                                                  
             'gcpredictlim' = cx000000                                            
             'gpredictlim' = cxC8C8C8                                             
             'gcpredict' = cx000000                                               
             'gpredict' = cx000000                                                
             'gcconfidence2' = cx000000                                           
             'gcconfidence' = cx000000                                            
             'gconfidence2' = cxA8A8A8                                            
             'gconfidence' = cxC8C8C8                                             
             'gcfit2' = cx000000                                                  
             'gcfit' = cx000000                                                   
             'gfit2' = cx000000                                                   
             'gfit' = cx000000                                                    
             'gcoutlier' = cx000000                                               
             'goutlier' = cxA0A0A0                                                
             'gcdata' = cx000000                                                  
             'gdata' = cxD2D2D2                                                   
             'ginsetheader' = colors('docbg')                                     
             'ginset' = cxFFFFFF                                                  
             'greferencelines' = cx808080                                         
             'gheader' = colors('docbg')                                          
             'gramp3cend' = cx5F5F5F                                              
             'gramp3cneutral' = cxA7A7A7                                          
             'gramp3cstart' = cxF0F0F0                                            
             'gramp2cend' = cxF0F0F0                                              
             'gramp2cstart' = cx5F5F5F                                            
             'gconramp3cend' = cx000000                                           
             'gconramp3cneutral' = cx777777                                       
             'gconramp3cstart' = cxC4C4C4                                         
             'gconramp2cend' = cx5F5F5F                                           
             'gconramp2cstart' = cxF0F0F0                                         
             'gtext' = cx000000                                                   
             'glabel' = cx000000                                                  
             'gborderlines' = cx000000                                            
             'goutlines' = cx000000                                               
             'ggrid' = cxECECEC                                                   
             'gaxis' = cx000000                                                   
             'gshadow' = cx000000                                                 
             'glegend' = cxFFFFFF                                                 
             'gfloor' = cxCCCCCC                                                  
             'gwalls' = cxFFFFFF                                                  
             'gcdata12' = cx000000                                                
             'gcdata11' = cx000000                                                
             'gcdata10' = cx000000                                                
             'gcdata9' = cx000000                                                 
             'gcdata8' = cx000000                                                 
             'gcdata7' = cx000000                                                 
             'gcdata6' = cx000000                                                 
             'gcdata5' = cx000000                                                 
             'gcdata4' = cx000000                                                 
             'gcdata3' = cx000000                                                 
             'gcdata2' = cx000000                                                 
             'gcdata1' = cx000000                                                 
             'gdata11' = CXe1e1e1                                                 
             'gdata5' = CXcfcfcf                                                  
             'gdata1' = CXbfbfbf                                                  
             'gdata7' = CXababab                                                  
             'gdata8' = CX969696                                                  
             'gdata2' = CX828282                                                  
             'gdata9' = CX6e6e6e                                                  
             'gdata3' = CX595959                                                  
             'gdata10' = CX454545                                                 
             'gdata4' = CX303030                                                  
             'gdata6' = CX1c1c1c                                                  
             'gdata12' = CX080808;                                                
          style Container;                                                        
          style Index from Container /                                            
             color = colors('fg');                                                
          style Contents from Document /                                          
             marginleft = 8                                                       
             marginright = 8                                                      
             backgroundcolor = colors('bg2')                                      
             pagebreakhtml = html('break')                                        
             tagattr = " onload=""expandAll()"""                                  
             liststyletype = "decimal";                                           
          style Pages from Document /                                             
             marginleft = 8                                                       
             marginright = 8                                                      
             backgroundcolor = colors('bg2')                                      
             pagebreakhtml = html('break')                                        
             tagattr = " onload=""expandAll()"""                                  
             liststyletype = "decimal";                                           
          style Date from Container /                                             
             color = colors('fg3')                                                
             width = 100%;                                                        
          style BodyDate from Date;                                               
          style IndexItem from Container /                                        
             liststyletype = NONE                                                 
             listentryanchor = on                                                 
             prehtml = html('fake bullet')                                        
             font = Fonts('docFont');                                             
          style ContentFolder from IndexItem /                                    
             listentryanchor = off                                                
             prehtml = html('prehtml flyover bullet')                             
             posthtml = html('posthtml flyover')                                  
             font = Fonts('docFont');                                             
          style IndexProcName from Index /                                        
             pretext = text('prefix1')                                            
             posttext = text('suffix1')                                           
             prehtml = html('prehtml flyover')                                    
             posthtml = html('posthtml flyover')                                  
             liststyletype = "decimal"                                            
             listentryanchor = off                                                
             font = Fonts('FixedEmphasisFont');                                   
          style IndexTitle from Index /                                           
             prehtml = html('expandAll')                                          
             posthtml = html('posthtml flyover line')                             
             font = Fonts('FixedStrongFont');                                     
          style SysTitleAndFooterContainer from Container /                       
             borderwidth = 0                                                      
             borderspacing = 0                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE                                                         
             font = Fonts('TitleFont2')                                           
             prehtml = "<!--BEGINTITLE-->"                                        
             posthtml = "<!--ENDTITLE-->";                                        
          style TitleAndNoteContainer from Container /                            
             borderwidth = 0                                                      
             borderspacing = 1                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE                                                         
             prehtml = "<!--BEGINTITLE1-->"                                       
             posthtml = "<!--ENDTITLE1-->";                                       
          style TitlesAndFooters from Container /                                 
             color = colors('fg')                                                 
             font = Fonts('TitleFont2');                                          
          style BylineContainer from Container /                                  
             borderwidth = 0                                                      
             borderspacing = 1                                                    
             padding = 1                                                          
             width = 100%                                                         
             frame = VOID                                                         
             rules = NONE;                                                        
          style SystemTitle from TitlesAndFooters /                               
             font = Fonts('TitleFont');                                           
          style SystemFooter from TitlesAndFooters /                              
             font = Fonts('TitleFont');                                           
          style Byline from TitlesAndFooters /                                    
             color = colors('fg2')                                                
             font = fonts('TitleFont');                                           
          style Parskip from TitlesAndFooters /                                   
             font = fonts('headingFont')                                          
             padding = 0                                                          
             borderspacing = 0;                                                   
          style Continued from TitlesAndFooters                                   
             "Controls continued flag" /                                          
             font = fonts('headingFont')                                          
             padding = 0                                                          
             borderspacing = 0                                                    
             pretext = text('continued')                                          
             width = 100%                                                         
             textalign = left;                                                    
          style ProcTitle from TitlesAndFooters /                                 
             font = fonts('TitleFont2');                                          
          style Output from Container /                                           
             bordercolor = colors('fgA1')                                         
             borderwidth = 1                                                      
             borderspacing = 0                                                    
             padding = 7                                                          
             frame = HSIDES                                                       
             rules = GROUPS                                                       
             backgroundcolor = colors('bgA1')                                     
             bordercollapse = separate;                                           
          style Table from Output /                                               
             prehtml = "<!--BEGINTABLE-->"                                        
             posthtml = "<!--ENDTABLE-->";                                        
          style Batch from Output                                                 
             "Batch (capture) Output style." /                                    
             color = colors('fg')                                                 
             font = fonts('FixedFont');                                           
          style Graph from Output;                                                
          style Note from Container /                                             
             prehtml = "<!--BEGINNOTE-->"                                         
             posthtml = "<!--ENDNOTE-->";                                         
          style NoteBanner from Note /                                            
             pretext = text('Note Banner')                                        
             font = fonts('StrongFont');                                          
          style NoteContent from Note                                             
             "Controls the contents for NOTE:s." /                                
             textalign = left;                                                    
          style NoteContentFixed from NoteContent                                 
             "Controls the contents for NOTE:s. Fixed font." /                    
             font = fonts('FixedFont');                                           
          style WarnBanner from Note                                              
             "Controls the banner for WARNING:s." /                               
             pretext = text('Warn Banner');                                       
          style WarnContent from Note                                             
             "Controls the contents of WARNING:s." /                              
             textalign = left;                                                    
          style WarnContentFixed from WarnContent                                 
             "Controls the contents for WARNING:s. Fixed font." /                 
             font = fonts('FixedFont');                                           
          style ErrorBanner from Note                                             
             "Controls the banner for ERROR:s." /                                 
             pretext = text('Error Banner');                                      
          style ErrorContent from Note                                            
             "Controls the contents of ERROR:s." /                                
             textalign = left;                                                    
          style ErrorContentFixed from ErrorContent                               
             "Controls the contents for ERROR:s. Fixed font." /                   
             font = fonts('FixedFont');                                           
          style FatalBanner from Note                                             
             "Controls the banner for FATAL:s." /                                 
             pretext = text('Fatal Banner');                                      
          style FatalContent from Note                                            
             "Controls the contents of FATAL:s." /                                
             textalign = left;                                                    
          style FatalContentFixed from FatalContent                               
             "Controls the contents for FATAL:s. Fixed font." /                   
             font = fonts('FixedFont');                                           
          style Data from Cell /                                                  
             backgroundcolor = colors('bg3')                                      
             color = colors('fg3')                                                
             font = Fonts('DocFont');                                             
          style DataEmphasis from Data /                                          
             font = fonts('EmphasisFont');                                        
          style DataEmphasisFixed from DataEmphasis /                             
             font = fonts('FixedEmphasisFont');                                   
          style DataStrong from Data /                                            
             font = fonts('StrongFont');                                          
          style HeadersAndFooters from Cell /                                     
             backgroundcolor = colors('bg2')                                      
             color = colors('fg2')                                                
             font = fonts('HeadingFont');                                         
          style Caption from HeadersAndFooters;                                   
          style HeaderEmphasis from Header /                                      
             font = fonts('EmphasisFont');                                        
          style HeaderStrong from Header /                                        
             font = fonts('StrongFont');                                          
          style GraphData1 from GraphData1 /                                      
             markersymbol = "circle";                                             
          style GraphData2 from GraphData2 /                                      
             markersymbol = "plus";                                               
          style GraphData3 from GraphData3 /                                      
             markersymbol = "X";                                                  
          style GraphData4 from GraphData4 /                                      
             markersymbol = "triangle";                                           
          style GraphData5 from GraphData5 /                                      
             markersymbol = "tilde";                                              
          style GraphData6 from GraphData6 /                                      
             markersymbol = "ibeam";                                              
          style GraphData7 from GraphData7 /                                      
             markersymbol = "square";                                             
          style GraphData8 from GraphData8 /                                      
             markersymbol = "asterisk";                                           
          style GraphData9 from GraphData9 /                                      
             markersymbol = "diamond";                                            
          style GraphData10 from GraphData10 /                                    
             markersymbol = "union";                                              
          style GraphData11 from GraphData11 /                                    
             markersymbol = "hash";                                               
          style GraphData12 from GraphData12 /                                    
             markersymbol = "tack";                                               
          style GraphData13 from GraphComponent /                                 
             markersymbol = "homedown";                                           
          style GraphData14 from GraphComponent /                                 
             markersymbol = "greaterthan";                                        
          style GraphData15 from GraphComponent /                                 
             markersymbol = "arrow";                                              
          style GraphHistogram from GraphComponent /                              
             displayopts = "fill outline";                                        
          style GraphEllipse from GraphComponent /                                
             displayopts = "outline";                                             
          style GraphBand from GraphComponent /                                   
             displayopts = "fill";                                                
          style GraphBox from GraphComponent /                                    
             displayopts = "fill caps median mean outliers"                       
             connect = "mean"                                                     
             capstyle = "serif";                                                  
          style GraphContour from GraphContour /                                  
             displayopts = "LabeledLine";                                         
       end;                                                                       
    run;
    le caractère gras c'est bold

    En esperant que ca aide,

    Manoutz

  3. #3
    Futur Membre du Club
    Profil pro
    Inscrit en
    Juillet 2009
    Messages
    7
    Détails du profil
    Informations personnelles :
    Localisation : France

    Informations forums :
    Inscription : Juillet 2009
    Messages : 7
    Points : 7
    Points
    7
    Par défaut Merci pour la réponse
    Bonjour,

    Merci pour la réponse.

    Sauf que je n'y comprends pas grand chose à la procédure.
    Exemple : 'docFont' = ("Courier New",8pt) Qu'est ce que ça fait?...

    En fait ce que j'aimerai c'est que l'on m'oriente vers des sites ou des livres qui permettraient de comprendre chaque style.

    Sissie

  4. #4
    Rédacteur

    Homme Profil pro
    SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Inscrit en
    Avril 2009
    Messages
    2 497
    Détails du profil
    Informations personnelles :
    Sexe : Homme
    Âge : 51
    Localisation : France, Yvelines (Île de France)

    Informations professionnelles :
    Activité : SAS ALLIANCE SILVER. Consultant et formateur SAS et Cognos.
    Secteur : Conseil

    Informations forums :
    Inscription : Avril 2009
    Messages : 2 497
    Points : 6 064
    Points
    6 064
    Par défaut
    J'ai rempli la rubrique CONTRIBUEZ FAQ suivante avec les liens pour tes lectures :

    http://www.developpez.net/forums/d55...s/#post4523517

    Stéphane.

+ Répondre à la discussion
Cette discussion est résolue.

Discussions similaires

  1. Utiliser un style défini à l'aide d'une proc template
    Par joyeux_lapin13 dans le forum ODS et reporting
    Réponses: 4
    Dernier message: 28/10/2011, 12h52
  2. [ODS] Définir son propre style (via template) à l'aide d'ODS listing
    Par joyeux_lapin13 dans le forum ODS et reporting
    Réponses: 3
    Dernier message: 19/10/2011, 12h49
  3. [PROC TEMPLATE] Créer un nouveau style pour la ligne des totaux
    Par enicnath dans le forum ODS et reporting
    Réponses: 6
    Dernier message: 28/07/2010, 17h26
  4. [Ressources biblio] PROC TEMPLATE Styles Tip Sheet
    Par datametric dans le forum Contribuez
    Réponses: 0
    Dernier message: 28/07/2009, 20h56
  5. proc Template : création style
    Par sasseur dans le forum ODS et reporting
    Réponses: 3
    Dernier message: 31/12/2008, 12h43

Partager

Partager
  • Envoyer la discussion sur Viadeo
  • Envoyer la discussion sur Twitter
  • Envoyer la discussion sur Google
  • Envoyer la discussion sur Facebook
  • Envoyer la discussion sur Digg
  • Envoyer la discussion sur Delicious
  • Envoyer la discussion sur MySpace
  • Envoyer la discussion sur Yahoo