Saturday, March 8, 2014

Using Options in R

To list all options is R:

as.matrix(.Options[1:length(.Options)])
 > as.matrix(.Options[1:length(.Options)])


                      [,1]                                         
prompt                "> "                                         
continue              "+ "                                         
expressions           5000                                         
width                 70                                           
deparse.cutoff        60                                           
digits                7                                            
echo                  TRUE                                         
verbose               FALSE                                        
check.bounds          FALSE                                        
keep.source           TRUE                                         
keep.source.pkgs      FALSE                                        
warning.length        1000                                         
nwarnings             50                                           
OutDec                "."                                          
browserNLdisabled     FALSE                                        
CBoundsCheck          FALSE                                        
warn                  0                                            
timeout               60                                           
encoding              "native.enc"                                 
show.error.messages   TRUE                                         
scipen                0                                            
max.print             10000                                        
add.smooth            TRUE                                         
stringsAsFactors      TRUE                                         
defaultPackages       Character,6                                  
papersize             "letter"                                     
pager                 ?                                            
useFancyQuotes        TRUE                                         
pdfviewer             "C:/PROGRA~1/R/R-30~1.1/bin/x64/open.exe"    
help.try.all.packages FALSE                                        
help.search.types     Character,3                                  
citation.bibtex.max   1                                            
internet.info         2                                            
pkgType               "win.binary"                                 
str                   List,3                                       
demo.ask              "default"                                    
example.ask           "default"                                    
HTTPUserAgent         "R (3.0.1 x86_64-w64-mingw32 x86_64 mingw32)"
menu.graphics         FALSE                                        
mailer                "mailto"                                     
unzip                 "internal"                                   
editor                ?                                            
repos                 Character,2                                  
help_type             "html"                                       
locatorBell           TRUE                                         
device.ask.default    FALSE                                        
windowsTimeouts       Integer,2                                    
device                "RStudioGD"                                  
contrasts             Character,2                                  
na.action             "na.omit"                                    
show.coef.Pvalues     TRUE                                         
show.signif.stars     TRUE                                         
str.dendrogram.last   "`"                                          
ts.eps                1e-05                                        
ts.S.compat           FALSE                                        
ggvis.renderer        "svg"                                        
error                 Expression                                   
browser               ?                                            
viewer                ?                                            
> as.matrix(.Options[1:length(.Options)])
                      [,1]                                         
prompt                "> "                                         
continue              "+ "                                         
expressions           5000                                         
width                 70                                           
deparse.cutoff        60                                           
digits                7                                            
echo                  TRUE                                         
verbose               FALSE                                        
check.bounds          FALSE                                        
keep.source           TRUE                                         
keep.source.pkgs      FALSE                                        
warning.length        1000                                         
nwarnings             50                                           
OutDec                "."                                          
browserNLdisabled     FALSE                                        
CBoundsCheck          FALSE                                        
warn                  0                                            
timeout               60                                           
encoding              "native.enc"                                 
show.error.messages   TRUE                                         
scipen                0                                            
max.print             10000                                        
add.smooth            TRUE                                         
stringsAsFactors      TRUE                                         
defaultPackages       Character,6                                  
papersize             "letter"                                     
pager                 ?                                            
useFancyQuotes        TRUE                                         
pdfviewer             "C:/PROGRA~1/R/R-30~1.1/bin/x64/open.exe"    
help.try.all.packages FALSE                                        
help.search.types     Character,3                                  
citation.bibtex.max   1                                            
internet.info         2                                            
pkgType               "win.binary"                                 
str                   List,3                                       
demo.ask              "default"                                    
example.ask           "default"                                    
HTTPUserAgent         "R (3.0.1 x86_64-w64-mingw32 x86_64 mingw32)"
menu.graphics         FALSE                                        
mailer                "mailto"                                     
unzip                 "internal"                                   
editor                ?                                            
repos                 Character,2                                  
help_type             "html"                                       
locatorBell           TRUE                                         
device.ask.default    FALSE                                        
windowsTimeouts       Integer,2                                    
device                "RStudioGD"                                  
contrasts             Character,2                                  
na.action             "na.omit"                                    
show.coef.Pvalues     TRUE                                         
show.signif.stars     TRUE                                         
str.dendrogram.last   "`"                                          
ts.eps                1e-05                                        
ts.S.compat           FALSE                                        
ggvis.renderer        "svg"                                        
error                 Expression                                   
browser               ?                                            
viewer                ?    

No comments:

Post a Comment