kaplan_meier 0.1.1 → 0.1.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
 - data/README.md +1 -3
 - data/_config.yml +1 -0
 - data/kaplan_meier.gemspec +1 -1
 - data/lib/kaplan_meier/version.rb +1 -1
 - metadata +3 -2
 
    
        checksums.yaml
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            ---
         
     | 
| 
       2 
2 
     | 
    
         
             
            SHA1:
         
     | 
| 
       3 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       4 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 3 
     | 
    
         
            +
              metadata.gz: 9d38f062c33ee604a4d050a37cb568841be20d04
         
     | 
| 
      
 4 
     | 
    
         
            +
              data.tar.gz: 55d61824fe0b9472d58b29b120a651ebff73fce7
         
     | 
| 
       5 
5 
     | 
    
         
             
            SHA512:
         
     | 
| 
       6 
     | 
    
         
            -
              metadata.gz:  
     | 
| 
       7 
     | 
    
         
            -
              data.tar.gz:  
     | 
| 
      
 6 
     | 
    
         
            +
              metadata.gz: 1abf5e078e0e05a9f64d0fdf91c647d8028e86ea0b55d70cb546edb00b3ea6fff489a4fa8c02a946c13c7e71fd9e10bce643f16b37ae4f8bcb6acaaf4c26acce
         
     | 
| 
      
 7 
     | 
    
         
            +
              data.tar.gz: b497943c93cdeba233cf486e869205f9a7c5698c837c62248024418aa16527aa418bf2b83c38471843b4bdabc0c9a69e86bd8c0c9666651dbacd3243dfebc515
         
     | 
    
        data/README.md
    CHANGED
    
    | 
         @@ -1,7 +1,5 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            # KaplanMeier
         
     | 
| 
       2 
2 
     | 
    
         | 
| 
       3 
     | 
    
         
            -
            Welcome to your new gem! In this directory, you'll find the files you need to be able to package up your Ruby library into a gem. Put your Ruby code in the file `lib/kaplan_meier`. To experiment with that code, run `bin/console` for an interactive prompt.
         
     | 
| 
       4 
     | 
    
         
            -
             
     | 
| 
       5 
3 
     | 
    
         
             
            This current intent of this library is to support doing a Kaplan-Meier Survival Analysis and generating survival plots for subjects that have a brain tumour diagnosis.  This is in support of research being conducted to help create better treatments and improve outcomes.
         
     | 
| 
       6 
4 
     | 
    
         | 
| 
       7 
5 
     | 
    
         
             
            This does not mean it is only useful for that, but it is the initial driver of the interface for better or for worse.
         
     | 
| 
         @@ -38,7 +36,7 @@ TODO: Improve these but taking the example data and results from graphpad, here 
     | 
|
| 
       38 
36 
     | 
    
         
             
             # it is using named parameters.
         
     | 
| 
       39 
37 
     | 
    
         | 
| 
       40 
38 
     | 
    
         | 
| 
       41 
     | 
    
         
            -
            km = KaplanMeier.new
         
     | 
| 
      
 39 
     | 
    
         
            +
            km = KaplanMeier::Survival.new
         
     | 
| 
       42 
40 
     | 
    
         
             
            km.add(46, 1, 1)
         
     | 
| 
       43 
41 
     | 
    
         
             
            km.add(64, 0, 1)
         
     | 
| 
       44 
42 
     | 
    
         
             
            km.add(78)
         
     | 
    
        data/_config.yml
    ADDED
    
    | 
         @@ -0,0 +1 @@ 
     | 
|
| 
      
 1 
     | 
    
         
            +
            theme: jekyll-theme-dinky
         
     | 
    
        data/kaplan_meier.gemspec
    CHANGED
    
    | 
         @@ -11,7 +11,7 @@ Gem::Specification.new do |spec| 
     | 
|
| 
       11 
11 
     | 
    
         | 
| 
       12 
12 
     | 
    
         
             
              spec.summary       = %q{Library to perform the Kaplan-Meier Survival Analysis.}
         
     | 
| 
       13 
13 
     | 
    
         
             
              spec.description   = %q{Evolving library to support analysing data for subjects with brain tumours, and driving graphical representations.}
         
     | 
| 
       14 
     | 
    
         
            -
              spec.homepage      = "https://github. 
     | 
| 
      
 14 
     | 
    
         
            +
              spec.homepage      = "https://seigel.github.io/kaplan-meier/"
         
     | 
| 
       15 
15 
     | 
    
         
             
              spec.license       = "MIT"
         
     | 
| 
       16 
16 
     | 
    
         | 
| 
       17 
17 
     | 
    
         
             
              # Prevent pushing this gem to RubyGems.org. To allow pushes either set the 'allowed_push_host'
         
     | 
    
        data/lib/kaplan_meier/version.rb
    CHANGED
    
    
    
        metadata
    CHANGED
    
    | 
         @@ -1,7 +1,7 @@ 
     | 
|
| 
       1 
1 
     | 
    
         
             
            --- !ruby/object:Gem::Specification
         
     | 
| 
       2 
2 
     | 
    
         
             
            name: kaplan_meier
         
     | 
| 
       3 
3 
     | 
    
         
             
            version: !ruby/object:Gem::Version
         
     | 
| 
       4 
     | 
    
         
            -
              version: 0.1. 
     | 
| 
      
 4 
     | 
    
         
            +
              version: 0.1.2
         
     | 
| 
       5 
5 
     | 
    
         
             
            platform: ruby
         
     | 
| 
       6 
6 
     | 
    
         
             
            authors:
         
     | 
| 
       7 
7 
     | 
    
         
             
            - seigel
         
     | 
| 
         @@ -68,13 +68,14 @@ files: 
     | 
|
| 
       68 
68 
     | 
    
         
             
            - LICENSE.txt
         
     | 
| 
       69 
69 
     | 
    
         
             
            - README.md
         
     | 
| 
       70 
70 
     | 
    
         
             
            - Rakefile
         
     | 
| 
      
 71 
     | 
    
         
            +
            - _config.yml
         
     | 
| 
       71 
72 
     | 
    
         
             
            - bin/console
         
     | 
| 
       72 
73 
     | 
    
         
             
            - bin/setup
         
     | 
| 
       73 
74 
     | 
    
         
             
            - kaplan_meier.gemspec
         
     | 
| 
       74 
75 
     | 
    
         
             
            - lib/kaplan_meier.rb
         
     | 
| 
       75 
76 
     | 
    
         
             
            - lib/kaplan_meier/survival.rb
         
     | 
| 
       76 
77 
     | 
    
         
             
            - lib/kaplan_meier/version.rb
         
     | 
| 
       77 
     | 
    
         
            -
            homepage: https://github. 
     | 
| 
      
 78 
     | 
    
         
            +
            homepage: https://seigel.github.io/kaplan-meier/
         
     | 
| 
       78 
79 
     | 
    
         
             
            licenses:
         
     | 
| 
       79 
80 
     | 
    
         
             
            - MIT
         
     | 
| 
       80 
81 
     | 
    
         
             
            metadata:
         
     |