Metadata-Version: 2.1
Name: olr
Version: 0.0.4
Summary: olr: Optimal Linear Regression
Home-page: https://www.github.com/MatHatter
Author: Mathew Fok
Author-email: mfok@stevens.edu
License: UNKNOWN
Description: The olr function runs all the possible combinations of linear regressions with all of the
        dependent variables against the independent variable and returns the statistical summary
        of either the greatest adjusted R-squared or R-squared term.
        
        
        
        datasetname = pd.read_csv('C:\Rstuff\olr\inst\extdata\oildata.csv')
        resvarname = datasetname[['OilPrices']]
        expvarnames = datasetname[['SP500', 'RigCount', 'API', 'Field_Production', 'RefinerNetInput', 'OperableCapacity', 'Imports', 'StocksExcludingSPR']]
        
        The TRUE or FALSE in the olr function, specifies either the adjusted R-squared or the R-squared regression summary, respectfully.
        
        Adjusted R-squared
        olr(datasetname, resvarname, expvarnames, adjr2 = "True")
        
        R-squared
        olr(datasetname, resvarname, expvarnames, adjr2 = "False")
        
        list of summaries
        olrmodels(datasetname, resvarname, expvarnames)
        
        list of formulas
        olrformulas(datasetname, resvarname, expvarnames)
        
        list of forumlas with the dependant variables in ascending order
        olrformulasorder(datasetname, resvarname, expvarnames)
        
        the list of adjusted R-squared terms
        adjr2list(datasetname, resvarname, expvarnames)
        
        the list of R-squared terms
        r2list(datasetname, resvarname, expvarnames)
        
        There is an R version of this package.
Platform: UNKNOWN
Description-Content-Type: text/markdown
