├── .gitattributes ├── .gitignore ├── AllTools.py ├── BookTools.py ├── README.md ├── create_def.py ├── create_proof.py ├── display_content.py ├── display_content ├── Content.png ├── Development.png ├── Topic_Definitions.png └── Topic_Proofs.png ├── find_conflicts.py ├── init_tools.txt ├── replace_string.py ├── report_links.py ├── report_links ├── Dead_Links.txt ├── Dead_Links_2020_04_14.txt ├── Dead_Links_2020_05_18.txt ├── Dead_Links_2020_06_06.txt ├── Dead_Links_2020_07_28.txt ├── Dead_Links_2020_08_26.txt ├── Dead_Links_2020_09_09.txt ├── Dead_Links_2020_12_02.txt ├── Dead_Links_2021_03_24.txt ├── Dead_Links_2021_05_04.txt ├── Dead_Links_2021_11_08.txt ├── Dead_Links_2021_11_10.txt ├── Dead_Links_2022_01_05.txt ├── Dead_Links_2022_03_28.txt ├── Dead_Links_2022_10_22.txt ├── Dead_Links_2023_08_18.txt ├── Dead_Links_2023_08_25.txt ├── Dead_Links_2024_01_12.txt ├── Dead_Links_2024_08_08.txt ├── Dead_Links_2024_09_20.txt └── Dead_Links_2025_01_14.txt ├── tweet_proof.py ├── tweet_proofs.py ├── tweet_proofs ├── Random_Proofs_2023.xlsx ├── Random_Proofs_2024.xlsx └── Random_Proofs_2025.xlsx ├── visualize_all.py ├── write_book.py └── write_book ├── StatProofBook.aux ├── StatProofBook.log ├── StatProofBook.pdf ├── StatProofBook.synctex.gz ├── StatProofBook.tex ├── StatProofBook.toc └── StatProofBook.txt /.gitattributes: -------------------------------------------------------------------------------- 1 | # Auto detect text files and perform LF normalization 2 | * text=auto 3 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | # Byte-compiled / optimized / DLL files 2 | __pycache__/ 3 | *.py[cod] -------------------------------------------------------------------------------- /AllTools.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Run all StatProofBook tools 4 | _ 5 | This script runs all updating Python scripts in this folder. 6 | 7 | Author: Joram Soch, BCCN Berlin 8 | E-Mail: joram.soch@bccn-berlin.de 9 | 10 | First edit: 2020-05-18 19:58:00 11 | Last edit: 2020-08-25 15:49:00 12 | """ 13 | 14 | 15 | import os 16 | cwd = os.getcwd() 17 | 18 | # Write "The Book of Statistical Proofs" 19 | #-----------------------------------------------------------------------------# 20 | runfile('write_book.py', wdir=cwd) 21 | 22 | # Report dead links in the StatProofBook 23 | #-----------------------------------------------------------------------------# 24 | runfile('report_links.py', wdir=cwd) 25 | 26 | # Find ToC conflicts in the StatProofBook 27 | #-----------------------------------------------------------------------------# 28 | runfile('find_conflicts.py', wdir=cwd) 29 | 30 | # Display content in the StatProofBook 31 | #-----------------------------------------------------------------------------# 32 | runfile('display_content.py', wdir=cwd) -------------------------------------------------------------------------------- /BookTools.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | The StatProofBookTools Unit 4 | _ 5 | This module collects several functions that are used by different scripts 6 | within the StatProofBookTools repository. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2020-04-14 16:35:00 12 | Last edit: 2024-09-27 15:32:00 13 | """ 14 | 15 | 16 | # Import modules 17 | #-----------------------------------------------------------------------------# 18 | import os 19 | import re 20 | from datetime import datetime 21 | 22 | # Get repository directory 23 | #-----------------------------------------------------------------------------# 24 | def get_rep_dir(rep_type): 25 | """ 26 | Return respository directory read from "init_tools.txt" 27 | """ 28 | ini_obj = open('init_tools.txt') 29 | ini_txt = ini_obj.readlines() 30 | ini_obj.close() 31 | rep_dir = ini_txt[0][:-1] 32 | www_dir = ini_txt[1][:] 33 | if rep_type == 'online': 34 | return www_dir 35 | else: 36 | return rep_dir 37 | 38 | # Get items from ToC 39 | #-----------------------------------------------------------------------------# 40 | def get_all_items(toc_txt): 41 | """ 42 | Extract relative proof and definition filenames from Table of Contents 43 | """ 44 | # Set chapter and section names 45 | #-------------------------------------------------------------------------# 46 | num_chap = 0; nums = [] 47 | num_sect = 0; 48 | num_ssec = 0; 49 | num_ssse = 0; 50 | curr_chap = ''; tocs = [] 51 | curr_sect = ''; 52 | curr_ssec = ''; 53 | curr_ssse = ''; files = [] 54 | # Parse "Table of Contents" 55 | #-------------------------------------------------------------------------# 56 | for entry in toc_txt: 57 | # If there is a new chapter 58 | #---------------------------------------------------------------------# 59 | if entry.count('.') == 0 and entry.find('

-1: 60 | num_sect = 0 61 | num_chap = num_chap + 1 62 | curr_chap = entry[entry.find('">')+2:entry.find('

')] 63 | curr_chap = curr_chap[curr_chap.find(': ')+2:] 64 | # If there is a new section 65 | #---------------------------------------------------------------------# 66 | if entry.count('.') == 1 and entry.find('

-1: 67 | num_ssec = 0 68 | num_sect = num_sect + 1 69 | curr_sect = entry[entry.find('">')+2:entry.find('

')] 70 | # If there is a new subsection 71 | #---------------------------------------------------------------------# 72 | if entry.count('.') == 2 and entry.find(str(num_sect) + '.' + str(num_ssec+1) + '. ') > -1: 73 | num_ssse = 0 74 | num_ssec = num_ssec + 1 75 | curr_ssec = entry[entry.find('. ')+2:entry.find('
')] 76 | if curr_ssec[-1] == ' ': curr_ssec = curr_ssec[0:-1] 77 | # If there is a new subsubsection 78 | #---------------------------------------------------------------------# 79 | if entry.count('.') >= 3 and entry.find(str(num_sect) + '.' + str(num_ssec) + '.' + str(num_ssse+1) + '. ') > -1: 80 | num_ssse = num_ssse + 1 81 | curr_ssse = entry[entry.find('[')+1:entry.find(']')] 82 | file = entry[entry.find('(', entry.find(']'))+1:entry.find(')', entry.find(']'))] 83 | file_md = file + '.md' 84 | # store file information 85 | nums.append([num_chap, num_sect, num_ssec, num_ssse]) 86 | tocs.append([curr_chap, curr_sect, curr_ssec, curr_ssse]) 87 | files.append(file_md) 88 | return nums, tocs, files 89 | 90 | # Get meta data 91 | #-----------------------------------------------------------------------------# 92 | def get_meta_data(file_txt): 93 | """ 94 | Return meta data of proof or definition 95 | """ 96 | for line in file_txt: 97 | if line.find('proof_id:') == 0: 98 | file_id = re.sub('"', '', line[10:-1]) 99 | if line.find('def_id:') == 0: 100 | file_id = re.sub('"', '', line[8:-1]) 101 | if line.find('shortcut:') == 0: 102 | shortcut = re.sub('"', '', line[10:-1]) 103 | if line.find('title:') == 0: 104 | title = re.sub('"', '', line[7:-1]) 105 | if line.find('author:') == 0: 106 | author = re.sub('"', '', line[8:-1]) 107 | if line.find('username:') == 0: 108 | username = re.sub('"', '', line[10:-1]) 109 | if not username: 110 | if not author: 111 | username = 'unknown' 112 | else: 113 | username = author 114 | if line.find('date:') == 0: 115 | date = datetime.strptime(line[6:-1], '%Y-%m-%d %H:%M:%S') 116 | return file_id, shortcut, title, username, date 117 | 118 | # Get ToC info 119 | #-----------------------------------------------------------------------------# 120 | def get_toc_info(file_txt): 121 | """ 122 | Return table of contents location of proof or definition 123 | """ 124 | for line in file_txt: 125 | if line.find('chapter:') == 0: 126 | chapter = re.sub('"', '', line[9:-1]) 127 | if line.find('section:') == 0: 128 | section = re.sub('"', '', line[9:-1]) 129 | if line.find('topic:') == 0: 130 | topic = re.sub('"', '', line[7:-1]) 131 | if line.find('theorem:') == 0: 132 | item = re.sub('"', '', line[9:-1]) 133 | if line.find('definition:') == 0: 134 | item = re.sub('"', '', line[12:-1]) 135 | return chapter, section, topic, item 136 | 137 | # Get sources 138 | #-----------------------------------------------------------------------------# 139 | def get_sources(file_txt): 140 | """ 141 | Return sources of proof or definition 142 | """ 143 | new_src = False 144 | sources = [] 145 | for line in file_txt: 146 | if line.find(' - authors:') == 0: 147 | if new_src: sources.append(source) 148 | new_src = True 149 | source = dict() 150 | source['authors'] = re.sub('"', '', line[13:-1]) 151 | source['authors'] = re.sub('_', '-', source['authors']) 152 | source['authors'] = re.sub('&', '\&', source['authors']) 153 | if line.find(' year:') == 0: 154 | source['year'] = re.sub('"', '', line[10:-1]) 155 | if line.find(' title:') == 0: 156 | source['title'] = re.sub('"', '', line[11:-1]) 157 | source['title'] = re.sub('&', '\&', source['title']) 158 | if line.find(' in:') == 0: 159 | source['in'] = re.sub('"', '', line[8:-1]) 160 | source['in'] = re.sub('&', '\&', source['in']) 161 | if line.find(' pages:') == 0: 162 | source['pages'] = re.sub('"', '', line[11:-1]) 163 | if line.find(' url:') == 0: 164 | source['url'] = re.sub('"', '', line[9:-1]) 165 | if line.find(' doi:') == 0: 166 | source['doi'] = re.sub('"', '', line[9:-1]) 167 | if new_src: sources.append(source) 168 | return sources 169 | 170 | # Extract file body 171 | #-----------------------------------------------------------------------------# 172 | def extract_body(file_txt): 173 | """ 174 | Return body text of proof or definition 175 | """ 176 | num_dash = 0 177 | start_line = 0 178 | end_line = len(file_txt) 179 | for i in range(0,end_line): 180 | if file_txt[i].find('---') == 0: 181 | num_dash = num_dash + 1 182 | if file_txt[i].find('**') == 0 and num_dash == 2 and start_line == 0: 183 | start_line = i 184 | body_txt = file_txt[start_line:end_line] 185 | return body_txt 186 | 187 | # Replace links/URLs 188 | #-----------------------------------------------------------------------------# 189 | def replace_links(line, rep_dir): 190 | """ 191 | Replace links in line from proof or definition 192 | """ 193 | 194 | # Replace links such as [text](/P/shortcut) or [text](/D/shortcut) by (-> I/1.2.3). 195 | while line.find('](/') > -1: 196 | # get bracket/parantheses indices 197 | i2 = line.find('](/') 198 | i3 = i2 + 1 199 | i4 = line.find(')', i2) 200 | i1 = line.rfind('[', 0, i2) 201 | # extract file information 202 | file = line[i3+1:i4] 203 | file_md = file + '.md' 204 | shortcut = file_md[3:-3] 205 | # create new reference 206 | if os.path.isfile(rep_dir + file_md): 207 | file_obj = open(rep_dir + file_md, 'r') 208 | file_txt = file_obj.readlines() 209 | file_obj.close() 210 | chapter, section, topic, item = get_toc_info(file_txt) 211 | new_ref = ' ($\\rightarrow$ ' + '\\ref{sec:' + chapter + '}/\\ref{sec:' + shortcut + '})' 212 | else: 213 | new_ref = '' # ' ($\\rightarrow$ ' + file_type + ' "' + shortcut + '")' 214 | # adapt to new reference 215 | line = line[0:i1] + line[i1+1:i2] + new_ref + line[i4+1:] 216 | 217 | # Replace links such as [text](URL) by \footnote{\url{URL}}. 218 | while line.find('](') > -1: 219 | # get bracket/parantheses indices 220 | i2 = line.find('](') 221 | i3 = i2 + 1 222 | i4 = line.find(')', i2) 223 | i1 = line.rfind('[', 0, i2) 224 | # create new reference 225 | new_ref = '\\footnote{\\url{' + line[i3+1:i4] + '}}' 226 | # adapt to new reference 227 | line = line[0:i1] + line[i1+1:i2] + new_ref + line[i4+1:] 228 | 229 | # Return line of text after references have been adapted. 230 | return line -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | ## StatProofBookTools 2 | 3 | [![DOI](https://zenodo.org/badge/238672483.svg)](https://zenodo.org/badge/latestdoi/238672483) 4 | 5 | Tools for [The Book of Statistical Proofs](https://statproofbook.github.io/) 6 | 7 | ### Getting Started 8 | 9 | To configure everything, proceed as follows: 10 | 1. clone the repositories [StatProofBook.github.io](https://github.com/StatProofBook/StatProofBook.github.io) and [StatProofBookTools](https://github.com/StatProofBook/StatProofBookTools) to your local machine; 11 | 2. replace the first line of `init_tools.txt` by the path to your local *StatProofBook.github.io* repository; 12 | 3. run any of the Python scripts (ending on `.py`) in your local *StatProofBookTools* repository. 13 | 14 | ### The Tools 15 | 16 | In more details, the tools allow you to: 17 | * `write_book.py`: write all StatProofBook content into a [LaTeX source file](https://github.com/StatProofBook/StatProofBookTools/blob/master/write_book/StatProofBook.tex) that results in a [PDF of the book](https://github.com/StatProofBook/StatProofBookTools/blob/master/write_book/StatProofBook.pdf); 18 | * `create_def.py`: take definition written in LaTeX and transform it into a StatProofBook entry [written in Markdown](https://raw.githubusercontent.com/StatProofBook/StatProofBook.github.io/master/D/-temp-.md); 19 | * `create_proof.py`: take a proof written in LaTeX and transform it into a StatProofBook entry [written in Markdown](https://raw.githubusercontent.com/StatProofBook/StatProofBook.github.io/master/P/-temp-.md); 20 | * `report_links.py`: create a [list of dead links](https://github.com/StatProofBook/StatProofBookTools/blob/master/report_links/Dead_Links.txt), i.e. a list of pages which are referenced but non-existing; 21 | * `find_conflicts.py`: display a list of conflicts, i.e. mismatches between [table of contents](https://statproofbook.github.io/I/ToC) and [proofs/definitions](https://github.com/StatProofBook/StatProofBook.github.io/wiki/Metadata-Fields#3-hierarchy-information-locating-a-page-in-the-table-of-contents); 22 | * `replace_string.py`: replace an arbitrary string with another predefined string in all proofs and definitions; 23 | * `display_content.py`: display some stats regarding [content](https://github.com/StatProofBook/StatProofBookTools/blob/master/display_content/Content.png), [development](https://github.com/StatProofBook/StatProofBookTools/blob/master/display_content/Development.png), [proofs](https://github.com/StatProofBook/StatProofBookTools/blob/master/display_content/Topic_Proofs.png) and [definitions](https://github.com/StatProofBook/StatProofBookTools/blob/master/display_content/Topic_Definitions.png); 24 | * `visualize_all.py`: create a nested dictionary that can be used for interactive visualization; 25 | * `tweet_proofs.py`: generate a list of [random proofs](https://x.com/search?q=%23RandomProof&src=typeahead_click&f=live) for tweeting from the [StatProofBook Twitter profile](https://twitter.com/StatProofBook); 26 | * `tweet_proof.py`: generate a text for tweeting a [new proof](https://x.com/search?q=%23NewProof&src=typed_query&f=live) from the [StatProofBook Twitter profile](https://twitter.com/StatProofBook). -------------------------------------------------------------------------------- /create_def.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Transfer Definition from LaTeX File to Markdown Document 4 | _ 5 | This script takes a definition written in LaTeX and transfers it into a 6 | Markdown file (almost) ready for submission to the StatProofBook. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2023-09-22 10:55:00 12 | Last edit: 2024-08-08 11:36:00 13 | """ 14 | 15 | 16 | # Specify definitions 17 | #-----------------------------------------------------------------------------# 18 | temp_def = 'samp' 19 | # This is the Markdown (.md) document in the StatProofBook which should be used 20 | # as a template for your definition. It should be in repository sub-folder "/D/". 21 | src_def = 'samp-size' 22 | # This is the LaTeX (.tex) document in src_dir which contains your definition. 23 | # LaTeX should be between "\begin{document}" and "\end{document}". 24 | src_dir =r'C:\Users\sochj\OvGUcloud\Projekte\StatProofBook\Submissions\JoramSoch\Definitions' 25 | 26 | # Import modules 27 | #-----------------------------------------------------------------------------# 28 | import re 29 | import webbrowser 30 | import BookTools as spbt 31 | from datetime import datetime 32 | 33 | # Set repository directory 34 | #-----------------------------------------------------------------------------# 35 | rep_dir = spbt.get_rep_dir('offline') 36 | 37 | # Load source definition 38 | #-----------------------------------------------------------------------------# 39 | file_tex = src_dir+'/'+src_def+'.tex' 40 | file_obj = open(file_tex, 'r') 41 | file_txt = file_obj.readlines() 42 | file_obj.close() 43 | 44 | # Analyze source definition 45 | #-----------------------------------------------------------------------------# 46 | begin = False 47 | i1 = 0; i2 = 0; 48 | for (i, line) in enumerate(file_txt): 49 | if len(line) > 1: 50 | if begin == True and i1 == 0: 51 | i1 = i 52 | if i1 > 0 and line.find('\\end{document}') < 0: 53 | i2 = i 54 | if line.find('\\begin{document}') > -1: 55 | begin = True 56 | body_txt = file_txt[i1:i2+1] 57 | 58 | # Load template definition 59 | #-----------------------------------------------------------------------------# 60 | file_md = rep_dir+'/D/'+temp_def+'.md' 61 | file_obj = open(file_md, 'r') 62 | file_txt = file_obj.readlines() 63 | file_obj.close() 64 | 65 | # Analyze template definition 66 | #-----------------------------------------------------------------------------# 67 | file_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 68 | chapter, section, topic, item = spbt.get_toc_info(file_txt) 69 | i1 = 0; i2 = 0; i3 = 0; 70 | for (i, line) in enumerate(file_txt): 71 | if line.find('author:') > -1: 72 | i1 = i 73 | if line.find('affiliation:') > -1: 74 | i2 = i 75 | if line.find('e_mail:') > -1: 76 | i3 = i 77 | 78 | # Write new definition header 79 | #-----------------------------------------------------------------------------# 80 | def_md = ['---\n', 81 | 'layout: definition\n', 82 | 'mathjax: true\n', 83 | '\n', 84 | file_txt[i1], 85 | file_txt[i2], 86 | file_txt[i3], 87 | 'date: '+datetime.now().strftime('%Y-%m-%d %H:%M:%S')+'\n', 88 | '\n', 89 | 'title: "___"\n', 90 | 'chapter: "'+chapter+'"\n', 91 | 'section: "'+section+'"\n', 92 | 'topic: "'+topic+'"\n', 93 | 'definition: "___"\n', 94 | '\n', 95 | 'sources:\n', 96 | '\n', 97 | 'def_id: "___"\n', 98 | 'shortcut: "'+src_def+'"\n', 99 | 'username: "'+username+'"\n', 100 | '---\n', 101 | '\n', 102 | '\n'] 103 | 104 | # Write new definition body 105 | #-----------------------------------------------------------------------------# 106 | in_equation = False 107 | for line in body_txt: 108 | # correct equation enviroment (\begin/end{equation} -> $$...$$) 109 | if not in_equation and line.find('\\begin{equation}') == 0: 110 | line = re.sub('\\\\begin{equation}', '$$', line) 111 | in_equation = True 112 | if in_equation and line.find('\\end{equation}') == 0: 113 | line = re.sub('\\\\end{equation}', '$$', line) 114 | in_equation = False 115 | # append current line to definition body 116 | def_md.append(line) 117 | 118 | # Save and open new definition 119 | #-----------------------------------------------------------------------------# 120 | file_md = src_dir+'/'+src_def+'.md' 121 | file_obj = open(file_md, 'w') 122 | for line in def_md: 123 | file_obj.write(line) 124 | file_obj.close() 125 | webbrowser.open(file_md) -------------------------------------------------------------------------------- /create_proof.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Transfer Proof from LaTeX File to Markdown Document 4 | _ 5 | This script takes a proof written in LaTeX and transfers it into a Markdown 6 | file (almost) ready for submission to the StatProofBook. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2023-09-01 13:40:00 12 | Last edit: 2024-08-08 11:41:00 13 | """ 14 | 15 | 16 | # Specify proofs 17 | #-----------------------------------------------------------------------------# 18 | temp_proof = 'lognorm-prodind' 19 | # This is the Markdown (.md) document in the StatProofBook which should be used 20 | # as a template for your proof. It should be in repository sub-folder "/P/". 21 | src_proof = 'lognorm-geomind' 22 | # This is the LaTeX (.tex) document in src_dir which contains your proof. 23 | # LaTeX should be between "\begin{document}" and "\end{document}". 24 | src_dir =r'C:\Users\sochj\OvGUcloud\Projekte\StatProofBook\Submissions\JoramSoch\Proofs' 25 | # This is the folder in which src_proof is located and the result will be saved. 26 | 27 | # Import modules 28 | #-----------------------------------------------------------------------------# 29 | import re 30 | import webbrowser 31 | import BookTools as spbt 32 | from datetime import datetime 33 | 34 | # Set repository directory 35 | #-----------------------------------------------------------------------------# 36 | rep_dir = spbt.get_rep_dir('offline') 37 | 38 | # Load source proof 39 | #-----------------------------------------------------------------------------# 40 | file_tex = src_dir+'/'+src_proof+'.tex' 41 | file_obj = open(file_tex, 'r') 42 | file_txt = file_obj.readlines() 43 | file_obj.close() 44 | 45 | # Analyze source proof 46 | #-----------------------------------------------------------------------------# 47 | begin = False 48 | i1 = 0; i2 = 0; 49 | for (i, line) in enumerate(file_txt): 50 | if len(line) > 1: 51 | if begin == True and i1 == 0: 52 | i1 = i 53 | if i1 > 0 and line.find('\\end{document}') < 0: 54 | i2 = i 55 | if line.find('\\begin{document}') > -1: 56 | begin = True 57 | body_txt = file_txt[i1:i2+1] 58 | 59 | # Load template proof 60 | #-----------------------------------------------------------------------------# 61 | file_md = rep_dir+'/P/'+temp_proof+'.md' 62 | file_obj = open(file_md, 'r') 63 | file_txt = file_obj.readlines() 64 | file_obj.close() 65 | 66 | # Analyze template proof 67 | #-----------------------------------------------------------------------------# 68 | file_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 69 | chapter, section, topic, item = spbt.get_toc_info(file_txt) 70 | i1 = 0; i2 = 0; i3 = 0; 71 | for (i, line) in enumerate(file_txt): 72 | if line.find('author:') > -1: 73 | i1 = i 74 | if line.find('affiliation:') > -1: 75 | i2 = i 76 | if line.find('e_mail:') > -1: 77 | i3 = i 78 | 79 | # Write new proof header 80 | #-----------------------------------------------------------------------------# 81 | proof_md = ['---\n', 82 | 'layout: proof\n', 83 | 'mathjax: true\n', 84 | '\n', 85 | file_txt[i1], 86 | file_txt[i2], 87 | file_txt[i3], 88 | 'date: '+datetime.now().strftime('%Y-%m-%d %H:%M:%S')+'\n', 89 | '\n', 90 | 'title: "___"\n', 91 | 'chapter: "'+chapter+'"\n', 92 | 'section: "'+section+'"\n', 93 | 'topic: "'+topic+'"\n', 94 | 'theorem: "___"\n', 95 | '\n', 96 | 'sources:\n', 97 | '\n', 98 | 'proof_id: "___"\n', 99 | 'shortcut: "'+src_proof+'"\n', 100 | 'username: "'+username+'"\n', 101 | '---\n', 102 | '\n', 103 | '\n'] 104 | 105 | # Write new proof body 106 | #-----------------------------------------------------------------------------# 107 | in_equation = False 108 | for line in body_txt: 109 | # correct equation enviroment (\begin/end{equation} -> $$...$$) 110 | if not in_equation and line.find('\\begin{equation}') == 0: 111 | line = re.sub('\\\\begin{equation}', '$$', line) 112 | in_equation = True 113 | if in_equation and line.find('\\end{equation}') == 0: 114 | line = re.sub('\\\\end{equation}', '$$', line) 115 | in_equation = False 116 | # append current line to proof body 117 | proof_md.append(line) 118 | 119 | # Save and open new proof 120 | #-----------------------------------------------------------------------------# 121 | file_md = src_dir+'/'+src_proof+'.md' 122 | file_obj = open(file_md, 'w') 123 | for line in proof_md: 124 | file_obj.write(line) 125 | file_obj.close() 126 | webbrowser.open(file_md) -------------------------------------------------------------------------------- /display_content.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Display content in the StatProofBook 4 | _ 5 | This script loads all content via the table of contents and visualizes 6 | (i) Content by Type, (ii) Development over Time as well as 7 | (iii) Proof and Definition by Topic. 8 | 9 | Author: Joram Soch, BCCN Berlin 10 | E-Mail: joram.soch@bccn-berlin.de 11 | 12 | First edit: 2020-04-15 18:15:00 13 | Last edit: 2021-11-08 22:59:00 14 | """ 15 | 16 | 17 | # Import modules 18 | #-----------------------------------------------------------------------------# 19 | # import os 20 | import BookTools as spbt 21 | import matplotlib.pyplot as plt 22 | from datetime import datetime 23 | 24 | # Set repository directory 25 | #-----------------------------------------------------------------------------# 26 | rep_dir = spbt.get_rep_dir('offline') 27 | plt.close('all') 28 | 29 | # Prepare date information 30 | #-----------------------------------------------------------------------------# 31 | P_ids = [] 32 | D_ids = [] 33 | P_dates = [] 34 | D_dates = [] 35 | 36 | # Prepare ToC information 37 | #-----------------------------------------------------------------------------# 38 | P_chs = [] 39 | D_chs = [] 40 | P_secs = [] 41 | D_secs = [] 42 | 43 | # Load "Table of Contents" 44 | #-----------------------------------------------------------------------------# 45 | toc_md = '/I/ToC.md' 46 | toc_obj = open(rep_dir + toc_md, 'r') 47 | toc_txt = toc_obj.readlines() 48 | toc_obj.close() 49 | 50 | # Browse through files 51 | #-----------------------------------------------------------------------------# 52 | files_checked = [] 53 | nums, tocs, files = spbt.get_all_items(toc_txt) 54 | for file in files: 55 | if '.md' in file and file not in files_checked: 56 | 57 | # Read proof/definition 58 | #---------------------------------------------------------------------# 59 | file_obj = open(rep_dir + file, 'r') 60 | file_txt = file_obj.readlines() 61 | file_obj.close() 62 | 63 | # Get date and info 64 | #---------------------------------------------------------------------# 65 | file_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 66 | chapter, section, topic, item = spbt.get_toc_info(file_txt) 67 | if file.find('/P/') > -1: 68 | P_ids.append(file_id) 69 | P_dates.append(date) 70 | P_chs.append(chapter) 71 | P_secs.append(section) 72 | if file.find('/D/') > -1: 73 | D_ids.append(file_id) 74 | D_dates.append(date) 75 | D_chs.append(chapter) 76 | D_secs.append(section) 77 | files_checked.append(file) 78 | 79 | # Calculate date differences 80 | #-----------------------------------------------------------------------------# 81 | d0 = datetime(2019,8,26,0,0,0) # day of inception of StatProofBook 82 | dt = datetime.today() # day and time today and now 83 | T = (dt-d0).days 84 | t = range(0,T+1) 85 | P_days = [(d-d0).days for d in P_dates] 86 | D_days = [(d-d0).days for d in D_dates] 87 | P_no = [sum(i <= x for i in P_days) for x in t] 88 | D_no = [sum(i <= x for i in D_days) for x in t] 89 | 90 | # Generate x and y for plot 91 | #-----------------------------------------------------------------------------# 92 | x1 = [0] 93 | x2 = [0] 94 | y1 = [0] 95 | y2 = [0] 96 | for i,x in enumerate(t): 97 | if i > 0: 98 | if P_no[i] != P_no[i-1]: 99 | x1.append(x) 100 | y1.append(max(y1)) 101 | x1.append(x) 102 | y1.append(P_no[i]) 103 | if D_no[i] != D_no[i-1]: 104 | x2.append(x) 105 | y2.append(max(y2)) 106 | x2.append(x) 107 | y2.append(D_no[i]) 108 | x1.append(T) 109 | y1.append(max(y1)) 110 | x2.append(T) 111 | y2.append(max(y2)) 112 | 113 | # Calculate ToC proportions 114 | #-----------------------------------------------------------------------------# 115 | ch_labels = ['General Theorems', 'Probability Distributions', 'Statistical Models', 'Model Selection'] 116 | D_labels = [None] * len(ch_labels) 117 | P_labels = [None] * len(ch_labels) 118 | D_ch_num = [0] * len(ch_labels) 119 | P_ch_num = [0] * len(ch_labels) 120 | D_sec_num = [None] * len(ch_labels) 121 | P_sec_num = [None] * len(ch_labels) 122 | for i,li in enumerate(ch_labels): 123 | D_ch_num[i] = D_chs.count(li) 124 | P_ch_num[i] = P_chs.count(li) 125 | D_secs_i = [b for a,b in zip(D_chs,D_secs) if a==li] 126 | P_secs_i = [b for a,b in zip(P_chs,P_secs) if a==li] 127 | D_seen_i = set() 128 | P_seen_i = set() 129 | D_labels[i] = [x for x in D_secs_i if not (x in D_seen_i or D_seen_i.add(x))] 130 | P_labels[i] = [x for x in P_secs_i if not (x in P_seen_i or P_seen_i.add(x))] 131 | D_sec_num[i] = [0] * len(D_labels[i]) 132 | P_sec_num[i] = [0] * len(P_labels[i]) 133 | for j,lj in enumerate(D_labels[i]): 134 | D_sec_num[i][j] = D_secs_i.count(lj) 135 | for j,lj in enumerate(P_labels[i]): 136 | P_sec_num[i][j] = P_secs_i.count(lj) 137 | 138 | # Pie chart (Content by Type) 139 | #-----------------------------------------------------------------------------# 140 | plt.figure(figsize=(12,10)) 141 | plt.pie([len(D_ids), len(P_ids)], labels=['Definitions', 'Proofs'], colors=['#0044FF', '#FF4400'], 142 | autopct=lambda p: '{:.0f}'.format(p * sum([len(D_ids), len(P_ids)]) / 100), 143 | startangle=90, shadow=False, textprops=dict(fontsize=24)) 144 | plt.axis('equal') 145 | plt.title('Content by Type', fontsize=32) 146 | plt.savefig('display_content/Content.png') 147 | plt.show() 148 | 149 | # Pie charts (Proofs by Topic) 150 | #-----------------------------------------------------------------------------# 151 | ch_sp = [1,4,6,3] 152 | ch_col = ['#0000FF', '#FF0000', '#00FF00', '#FFFF00'] 153 | plt.figure(figsize=(16,9)) 154 | plt.subplot(1,3,2) 155 | plt.pie(P_ch_num, labels=ch_labels, colors=ch_col, 156 | autopct=lambda p: '{:.0f}'.format(p * sum(P_ch_num) / 100), 157 | startangle=90, shadow=False, textprops=dict(fontsize=12)) 158 | plt.axis('equal') 159 | plt.title('Proofs by Topic', fontsize=32) 160 | for i,li in enumerate(ch_labels): 161 | plt.subplot(2,3,ch_sp[i]) 162 | plt.pie(P_sec_num[i], labels=P_labels[i], colors=[ch_col[i]], 163 | wedgeprops={'edgecolor': 'k', 'linewidth': 1}, 164 | autopct=lambda p: '{:.0f}'.format(p * sum(P_sec_num[i]) / 100), 165 | startangle=90, shadow=False, textprops=dict(fontsize=8)) 166 | plt.axis('equal') 167 | plt.title(ch_labels[i], fontsize=12) 168 | plt.savefig('display_content/Topic_Proofs.png') 169 | plt.show() 170 | 171 | # Pie charts (Definitions by Topic) 172 | #-----------------------------------------------------------------------------# 173 | plt.figure(figsize=(16,9)) 174 | plt.subplot(1,3,2) 175 | plt.pie(D_ch_num, labels=ch_labels, colors=ch_col, 176 | autopct=lambda p: '{:.0f}'.format(p * sum(D_ch_num) / 100), 177 | startangle=90, shadow=False, textprops=dict(fontsize=12)) 178 | plt.axis('equal') 179 | plt.title('Definitions by Topic', fontsize=32) 180 | for i,li in enumerate(ch_labels): 181 | plt.subplot(2,3,ch_sp[i]) 182 | plt.pie(D_sec_num[i], labels=D_labels[i], colors=[ch_col[i]], 183 | wedgeprops={'edgecolor': 'k', 'linewidth': 1}, 184 | autopct=lambda p: '{:.0f}'.format(p * sum(D_sec_num[i]) / 100), 185 | startangle=90, shadow=False, textprops=dict(fontsize=8)) 186 | plt.axis('equal') 187 | plt.title(ch_labels[i], fontsize=12) 188 | plt.savefig('display_content/Topic_Definitions.png') 189 | plt.show() 190 | 191 | # Line plot (Development over Time) 192 | #-----------------------------------------------------------------------------# 193 | plt.figure(figsize=(16,9)) 194 | h1 = plt.plot(x2, y2, 'b-', linewidth=2, color='#0044FF') 195 | h2 = plt.plot(x1, y1, 'r-', linewidth=2, color='#FF4400') 196 | plt.axis([0, T, -0.1, +(11/10)*max([max(P_no), max(D_no)])]) 197 | plt.grid(True) 198 | plt.xlabel('days since inception of the StatProofBook (August 26, 2019)', fontsize=16) 199 | plt.ylabel('number of proofs and definitions available', fontsize=16) 200 | plt.title('Development over Time', fontsize=32) 201 | plt.legend((h1[0], h2[0]), ('Definitions', 'Proofs'), loc='upper left') 202 | plt.savefig('display_content/Development.png') 203 | plt.show() -------------------------------------------------------------------------------- /display_content/Content.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatProofBook/StatProofBookTools/6d3e5aa912cd2e6d614ccbc4351fec8702e60f00/display_content/Content.png -------------------------------------------------------------------------------- /display_content/Development.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatProofBook/StatProofBookTools/6d3e5aa912cd2e6d614ccbc4351fec8702e60f00/display_content/Development.png -------------------------------------------------------------------------------- /display_content/Topic_Definitions.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatProofBook/StatProofBookTools/6d3e5aa912cd2e6d614ccbc4351fec8702e60f00/display_content/Topic_Definitions.png -------------------------------------------------------------------------------- /display_content/Topic_Proofs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/StatProofBook/StatProofBookTools/6d3e5aa912cd2e6d614ccbc4351fec8702e60f00/display_content/Topic_Proofs.png -------------------------------------------------------------------------------- /find_conflicts.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Find conflicts in Table of Contents 4 | _ 5 | This script loads all content from the proof/definition/index directories and 6 | produces warnings about ToC mismatches between index and proofs/definitions. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2020-08-25 15:55:00 12 | Last edit: 2024-10-04 11:52:00 13 | """ 14 | 15 | 16 | # Import modules 17 | #-----------------------------------------------------------------------------# 18 | import BookTools as spbt 19 | 20 | # Set repository directory 21 | #-----------------------------------------------------------------------------# 22 | rep_dir = spbt.get_rep_dir('offline') 23 | www_dir = spbt.get_rep_dir('online') 24 | toc_md = '/I/ToC.md' 25 | 26 | # Read "Table of Contents" 27 | #-----------------------------------------------------------------------------# 28 | toc_obj = open(rep_dir + toc_md, 'r') 29 | toc_txt = toc_obj.readlines() 30 | toc_obj.close() 31 | 32 | # Parse "Table of Contents" 33 | #-----------------------------------------------------------------------------# 34 | chapters = ['I', 'II', 'III', 'IV'] 35 | nums, tocs, files = spbt.get_all_items(toc_txt) 36 | 37 | # Prepare finding conflicts 38 | #-----------------------------------------------------------------------------# 39 | print('\n-> Find ToC conflicts in the StatProofBook:') 40 | num_conf = 0 41 | 42 | # Perform finding conflicts 43 | #-----------------------------------------------------------------------------# 44 | for num, toc, file_md in zip(nums, tocs, files): 45 | 46 | # Read proof or definition 47 | if file_md.find('/P/') > -1: 48 | item_type = 'Proof' 49 | if file_md.find('/D/') > -1: 50 | item_type = 'Definition' 51 | file_obj = open(rep_dir + file_md, 'r') 52 | file_txt = file_obj.readlines() 53 | file_obj.close() 54 | 55 | # Extract ToC information (from file) 56 | file_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 57 | chapter, section, topic, item = spbt.get_toc_info(file_txt) 58 | 59 | # Extract ToC information (from ToC) 60 | num_chap = num[0] 61 | num_sect = num[1] 62 | num_ssec = num[2] 63 | num_ssse = num[3] 64 | curr_chap = toc[0] 65 | curr_sect = toc[1] 66 | curr_ssec = toc[2] 67 | curr_ssse = toc[3] 68 | 69 | # Compare ToC information 70 | if chapter != curr_chap or section != curr_sect or topic != curr_ssec or item != curr_ssse: 71 | print(' - Warning: ' + item_type + ' "' + shortcut + '" (' + chapters[num_chap-1] + '/' + str(num_sect) + '.' + str(num_ssec) + '.' + str(num_ssse) + '. ' + title + '):') 72 | print(' - categoized in file as "' + chapter + '" >> "' + section + '" >> "' + topic + '" >> "' + item + '".') 73 | print(' - referenced in ToC as "' + curr_chap + '" >> "' + curr_sect + '" >> "' + curr_ssec + '" >> "' + curr_ssse + '".') 74 | num_conf = num_conf + 1 75 | 76 | # Finalize treatment 77 | #-----------------------------------------------------------------------------# 78 | if num_conf == 0: 79 | print(' - no conflicts found.') 80 | else: 81 | print('\n-> Number of conflicts found: {}.'.format(num_conf)) -------------------------------------------------------------------------------- /init_tools.txt: -------------------------------------------------------------------------------- 1 | C:\Users\sochj\OvGUcloud\Projekte\StatProofBook\Repositories\StatProofBook.github.io 2 | https://raw.githubusercontent.com/StatProofBook/StatProofBook.github.io/master -------------------------------------------------------------------------------- /replace_string.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Find and replace string in the StatProofBook 4 | _ 5 | This script goes through all proofs and definitions and 6 | replaces a string str1 with another string str2. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2020-04-14 17:48:00 12 | Last edit: 2020-10-08 08:18:00 13 | """ 14 | 15 | 16 | # Import modules 17 | #-----------------------------------------------------------------------------# 18 | import os 19 | import re 20 | import BookTools as spbt 21 | 22 | # Define settings 23 | #-----------------------------------------------------------------------------# 24 | str1r= '/D/est-unb' # should be identical to str1, unless str1 25 | str1 = '/D/est-unb' # contains regexp-problematic characters 26 | str2 = '/D/est-bias' 27 | 28 | # Set repository directory 29 | #-----------------------------------------------------------------------------# 30 | rep_dir = spbt.get_rep_dir('offline') 31 | 32 | # Start replacement 33 | #-----------------------------------------------------------------------------# 34 | print('\n-> Replace "' + str1 + '" by "' + str2 + '":') 35 | file_found = False 36 | 37 | # Browse through proofs 38 | #-----------------------------------------------------------------------------# 39 | files = os.listdir(rep_dir + '/P/') 40 | for file in files: 41 | if '.md' in file: 42 | 43 | # Read proof file 44 | #---------------------------------------------------------------------# 45 | file_obj = open(rep_dir + '/P/' + file, 'r') 46 | file_txt = file_obj.readlines() 47 | file_obj.close() 48 | 49 | # Search proof text 50 | #---------------------------------------------------------------------# 51 | str_found = False 52 | for i, line in enumerate(file_txt): 53 | if line.find(str1) > -1: 54 | str_found = True 55 | file_txt[i] = re.sub(str1r, str2, line) 56 | 57 | # Write proof file 58 | #---------------------------------------------------------------------# 59 | if str_found: 60 | print(' - in "/P/' + file + '"') 61 | file_new = open(rep_dir + '/P/' + file, 'w') 62 | for line in file_txt: 63 | file_new.write(line) 64 | file_new.close() 65 | file_found = True 66 | 67 | # Browse through definitions 68 | #-----------------------------------------------------------------------------# 69 | files = os.listdir(rep_dir + '/D/') 70 | for file in files: 71 | if '.md' in file: 72 | 73 | # Read definition file 74 | #---------------------------------------------------------------------# 75 | file_obj = open(rep_dir + '/D/' + file, 'r') 76 | file_txt = file_obj.readlines() 77 | file_obj.close() 78 | 79 | # Search definition text 80 | #---------------------------------------------------------------------# 81 | str_found = False 82 | for i, line in enumerate(file_txt): 83 | if line.find(str1) > -1: 84 | str_found = True 85 | file_txt[i] = re.sub(str1r, str2, line) 86 | 87 | # Write definition file 88 | #---------------------------------------------------------------------# 89 | if str_found: 90 | print(' - in "/D/' + file + '"') 91 | file_new = open(rep_dir + '/D/' + file, 'w') 92 | for line in file_txt: 93 | file_new.write(line) 94 | file_new.close() 95 | file_found = True 96 | 97 | # Finalize replacement 98 | #-----------------------------------------------------------------------------# 99 | if not file_found: 100 | print(' - not found in files.') -------------------------------------------------------------------------------- /report_links.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Report dead links in the StatProofBook 4 | _ 5 | This script loads all content from the proof and definition directories and 6 | lists proof and definition pages which are referenced but non-existing. 7 | 8 | Author: Joram Soch, BCCN Berlin 9 | E-Mail: joram.soch@bccn-berlin.de 10 | 11 | First edit: 2020-04-14 06:27:00 12 | Last edit: 2020-08-26 15:48:00 13 | """ 14 | 15 | 16 | # Import modules 17 | #-----------------------------------------------------------------------------# 18 | import os 19 | import BookTools as spbt 20 | from datetime import datetime 21 | from shutil import copyfile 22 | 23 | # Set repository directory 24 | #-----------------------------------------------------------------------------# 25 | rep_dir = spbt.get_rep_dir('offline') 26 | 27 | # Prepare page references 28 | #-----------------------------------------------------------------------------# 29 | filenames = [] # list of referenced files 30 | linktexts = [] # list of reference texts 31 | srcefiles = [] # list of files referenced from 32 | 33 | # Browse through proofs 34 | #-----------------------------------------------------------------------------# 35 | files = os.listdir(rep_dir + '/P/') 36 | for file in files: 37 | if '.md' in file: 38 | 39 | # Read proof file 40 | #---------------------------------------------------------------------# 41 | file_obj = open(rep_dir + '/P/' + file, 'r') 42 | file_txt = file_obj.readlines() 43 | file_obj.close() 44 | 45 | # Search proof body 46 | #---------------------------------------------------------------------# 47 | body_txt = spbt.extract_body(file_txt) 48 | for line in body_txt: 49 | while line.find('](/') > -1: 50 | # get bracket/parantheses indices 51 | i2 = line.find('](/') 52 | i3 = i2 + 1 53 | i4 = line.find(')', i2) 54 | i1 = line.rfind('[', 0, i2) 55 | # get shortcut/filename 56 | file_md = line[i3+1:i4] + '.md' 57 | linktext = line[i1+1:i2] 58 | # if file does not exist 59 | if not os.path.isfile(rep_dir + file_md): 60 | filenames.append(file_md) 61 | linktexts.append(linktext) 62 | srcefiles.append('/P/'+file) 63 | # shorten the file line 64 | line = line[i4+1:] 65 | 66 | # Browse through definitions 67 | #-----------------------------------------------------------------------------# 68 | files = os.listdir(rep_dir + '/D/') 69 | for file in files: 70 | if '.md' in file: 71 | 72 | # Read proof file 73 | #---------------------------------------------------------------------# 74 | file_obj = open(rep_dir + '/D/' + file, 'r') 75 | file_txt = file_obj.readlines() 76 | file_obj.close() 77 | 78 | # Search proof body 79 | #---------------------------------------------------------------------# 80 | body_txt = spbt.extract_body(file_txt) 81 | for line in body_txt: 82 | while line.find('](/') > -1: 83 | # get bracket/parantheses indices 84 | i2 = line.find('](/') 85 | i3 = i2 + 1 86 | i4 = line.find(')', i2) 87 | i1 = line.rfind('[', 0, i2) 88 | # get shortcut/filename 89 | file_md = line[i3+1:i4] + '.md' 90 | linktext = line[i1+1:i2] 91 | # if file does not exist 92 | if not os.path.isfile(rep_dir + file_md): 93 | filenames.append(file_md) 94 | linktexts.append(linktext) 95 | srcefiles.append('/D/'+file) 96 | # shorten the file line 97 | line = line[i4+1:] 98 | 99 | # Prepare unique references 100 | #-----------------------------------------------------------------------------# 101 | unique_filenames = [] # list of unique referenced files 102 | unique_linktexts = [] # list of unique reference texts 103 | unique_srcefiles = [] # list of unique files referenced from 104 | 105 | # Browse through references 106 | #-----------------------------------------------------------------------------# 107 | sort_ind = [i for (v, i) in sorted([(v, i) for (i, v) in enumerate(filenames)])] 108 | last_file = 'last_file' 109 | ults = False 110 | for i in range(0,len(filenames)): 111 | filename = filenames[sort_ind[i]] 112 | if filename != last_file: 113 | if ults: 114 | unique_filenames.append(last_file) 115 | unique_linktexts.append(sorted(ults)) 116 | ults = [] 117 | ults.append(linktexts[sort_ind[i]]) 118 | else: 119 | if linktexts[sort_ind[i]] not in ults: 120 | ults.append(linktexts[sort_ind[i]]) 121 | last_file = filename 122 | unique_filenames.append(last_file) 123 | unique_linktexts.append(sorted(ults)) 124 | 125 | # Extract source files 126 | #-----------------------------------------------------------------------------# 127 | for i in range(0,len(unique_filenames)): # filenames 128 | usfs_i = [] 129 | for j in range(0,len(unique_linktexts[i])): # link texts 130 | usfs_j = [] 131 | for k in range(0,len(srcefiles)): # source files 132 | if filenames[k] == unique_filenames[i] and linktexts[k] == unique_linktexts[i][j] and srcefiles[k] not in usfs_j: 133 | usfs_j.append(srcefiles[k]) 134 | usfs_i.append(sorted(usfs_j)) 135 | unique_srcefiles.append(usfs_i) 136 | 137 | # Open protocol file 138 | #-----------------------------------------------------------------------------# 139 | today_day = datetime.now().strftime('%Y_%m_%d') 140 | today_now = datetime.now().strftime('%Y-%m-%d, %H:%M') 141 | protocol = open('report_links/Dead_Links_' + today_day + '.txt', 'w') 142 | 143 | # Display non-existing pages 144 | #-----------------------------------------------------------------------------# 145 | print('\n-> Pages which are referenced but non-existing:') 146 | protocol.write('-> Pages which are referenced but non-existing (' + today_now + '):\n') 147 | for i in range(0,len(unique_filenames)): 148 | filename = unique_filenames[i] 149 | shortcut = filename[3:-3] 150 | if filename.find('/P/') > -1: 151 | protocol.write(' - Proof "' + shortcut + '" ("' + filename[0:-3] + '"), referenced as\n') 152 | if filename.find('/D/') > -1: 153 | protocol.write(' - Definition "' + shortcut + '" ("' + filename[0:-3] + '"), referenced as\n') 154 | for j in range(0,len(unique_linktexts[i])): 155 | linktext = unique_linktexts[i][j] 156 | protocol.write(' - "' + linktext + '", referenced in\n') 157 | for k in range(0,len(unique_srcefiles[i][j])): 158 | srcefile = unique_srcefiles[i][j][k] 159 | protocol.write(' - "' + srcefile[0:-3] + '"\n') 160 | 161 | # Close protocol file 162 | #-----------------------------------------------------------------------------# 163 | protocol.close() 164 | print(' - written into "' + protocol.name + '"') 165 | copyfile('report_links/Dead_Links_' + today_day + '.txt', 'report_links/Dead_Links.txt') -------------------------------------------------------------------------------- /report_links/Dead_Links.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2025-01-14, 17:02): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blue" ("/D/blue"), referenced as 11 | - "best linear unbiased estimator", referenced in 12 | - "/P/iglm-blue" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 19 | - "exponential family", referenced in 20 | - "/P/dir-mle" 21 | - Definition "dist-mixt" ("/D/dist-mixt"), referenced as 22 | - "mixture distribution", referenced in 23 | - "/P/norm-corrind" 24 | - Definition "marg" ("/D/marg"), referenced as 25 | - "marginals", referenced in 26 | - "/P/bvn-mi" 27 | - "/P/mvn-mi" 28 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 29 | - "conditional expectation", referenced in 30 | - "/P/mean-tot" 31 | - Definition "mean-geom" ("/D/mean-geom"), referenced as 32 | - "geometric mean", referenced in 33 | - "/P/lognorm-geomind" 34 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 35 | - "measurable function", referenced in 36 | - "/D/rvar" 37 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 38 | - "non-central chi-squared distribution", referenced in 39 | - "/P/mlr-rssdist" 40 | - Definition "odds" ("/D/odds"), referenced as 41 | - "odds ratio", referenced in 42 | - "/P/lbf-der" 43 | - "/P/pmp-bf" 44 | - "/P/pmp-lbf" 45 | - Definition "post-odd" ("/D/post-odd"), referenced as 46 | - "posterior odds", referenced in 47 | - "/P/bayes-rule" 48 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 49 | - "prior odds", referenced in 50 | - "/P/bayes-rule" 51 | - Definition "prob-add" ("/D/prob-add"), referenced as 52 | - "addition law of probability", referenced in 53 | - "/P/prob-exc" 54 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 55 | - "probability measure", referenced in 56 | - "/D/prob-ax" 57 | - "/D/prob-spc" 58 | - Definition "std-pool" ("/D/std-pool"), referenced as 59 | - "pooled standard deviation", referenced in 60 | - "/P/ug-ttest2" 61 | - "/P/ugkv-ztest2" 62 | - Definition "z" ("/D/z"), referenced as 63 | - "standard scores", referenced in 64 | - "/P/corr-z" 65 | - Proof "beta-mode" ("/P/beta-mode"), referenced as 66 | - "mode of the beta distribution", referenced in 67 | - "/P/bin-map" 68 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 69 | - "raw moments of the beta-binomial distribution", referenced in 70 | - "/P/betabin-mome" 71 | - Proof "bin-cdf" ("/P/bin-cdf"), referenced as 72 | - "cumulative distribution function of a binomial distribution", referenced in 73 | - "/P/bin-test" 74 | - Proof "cheb-ineq" ("/P/cheb-ineq"), referenced as 75 | - "Chebyshev's inequality", referenced in 76 | - "/P/mean-wlln" 77 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 78 | - "expected value of a logarithmized Dirichlet variate", referenced in 79 | - "/P/dir-kl" 80 | - Proof "dir-mode" ("/P/dir-mode"), referenced as 81 | - "mode of the Dirichlet distribution", referenced in 82 | - "/P/mult-map" 83 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 84 | - "relationship between the Dirichlet and the gamma distribution", referenced in 85 | - "/P/dir-ep" 86 | - Proof "gam-mode" ("/P/gam-mode"), referenced as 87 | - "mode of the gamma distribution", referenced in 88 | - "/P/blr-map" 89 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 90 | - "Wilks' theorem", referenced in 91 | - "/P/ci-wilks" 92 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 93 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 94 | - "/P/mult-mle" 95 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 96 | - "Cochran's theorem for multivariate normal variables", referenced in 97 | - "/P/mlr-rssdist" 98 | - Proof "mvn-mode" ("/P/mvn-mode"), referenced as 99 | - "mode of the multivariate normal distribution", referenced in 100 | - "/P/blr-map" 101 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 102 | - "covariance of the multivariate t-distribution", referenced in 103 | - "/P/ng-cov" 104 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 105 | - "linear transformation theorem for the multivariate t-distribution", referenced in 106 | - "/P/blr-pcr" 107 | - "/P/blr-pp" 108 | - "/P/mvt-f" 109 | - "/P/nst-t" 110 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 111 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 112 | - "/P/mlr-rssdist" 113 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 114 | - "is a special case", referenced in 115 | - "/P/nst-t" 116 | - Proof "pdf" ("/P/pdf"), referenced as 117 | - "probability density function", referenced in 118 | - "/D/dist-uni" 119 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 120 | - "Cochran's theorem", referenced in 121 | - "/P/anova1-f" 122 | - "/P/anova2-cochran" 123 | - "/P/norm-chi2" 124 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 125 | - "expected value of a Wishart log-determinant", referenced in 126 | - "/P/wish-kl" 127 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 128 | - "expected value of a Wishart random matrix", referenced in 129 | - "/P/wish-kl" 130 | - "expected value of the Wishart distribution", referenced in 131 | - "/P/nw-mean" 132 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 133 | - "is described by the probability density function", referenced in 134 | - "/P/gam-wish" 135 | - "probability density function of the Wishart distribution", referenced in 136 | - "/P/mblr-lme" 137 | - "/P/nw-pdf" 138 | - "/P/wish-kl" 139 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_05_18.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-05-18, 20:29): 2 | - Definition "bf" ("/D/bf.md"), referenced as 3 | - "Bayes factor", referenced in 4 | - "/P/bayes-rule.md" 5 | - "/P/lbf-lme.md" 6 | - "/P/pmp-bf.md" 7 | - "/P/pmp-lbf.md" 8 | - Definition "bias" ("/D/bias.md"), referenced as 9 | - "bias", referenced in 10 | - "/P/mse-bnv.md" 11 | - Definition "chi2" ("/D/chi2.md"), referenced as 12 | - "chi-squared distribution", referenced in 13 | - "/P/ci-wilks.md" 14 | - Definition "ci" ("/D/ci.md"), referenced as 15 | - "confidence interval", referenced in 16 | - "/P/ci-wilks.md" 17 | - Definition "dof" ("/D/dof.md"), referenced as 18 | - "degree of freedom", referenced in 19 | - "/P/ci-wilks.md" 20 | - "degrees of freedom", referenced in 21 | - "/P/rsq-der.md" 22 | - Definition "est-unb" ("/D/est-unb.md"), referenced as 23 | - "bias", referenced in 24 | - "/P/resvar-bias.md" 25 | - "biased estimator", referenced in 26 | - "/P/resvar-bias.md" 27 | - "/P/resvar-unb.md" 28 | - "unbiased estimator", referenced in 29 | - "/P/resvar-unb.md" 30 | - Definition "est" ("/D/est.md"), referenced as 31 | - "parameter estimates", referenced in 32 | - "/P/snr-rsq.md" 33 | - Definition "iid" ("/D/iid.md"), referenced as 34 | - "independent and identically distributed", referenced in 35 | - "/P/beta-mom.md" 36 | - Definition "ind" ("/D/ind.md"), referenced as 37 | - "dependent", referenced in 38 | - "/P/mean-mult.md" 39 | - "independent", referenced in 40 | - "/D/bin.md" 41 | - "/D/mult.md" 42 | - "/D/rsq.md" 43 | - "/D/snr.md" 44 | - "/P/bin-pmf.md" 45 | - "/P/mean-mult.md" 46 | - "/P/mult-pmf.md" 47 | - "/P/poiss-mle.md" 48 | - "/P/poissexp-lme.md" 49 | - "/P/poissexp-post.md" 50 | - "/P/poissexp-prior.md" 51 | - "/P/snr-rsq.md" 52 | - Definition "lbf" ("/D/lbf.md"), referenced as 53 | - "log Bayes factor", referenced in 54 | - "/P/lbf-lme.md" 55 | - "/P/pmp-lbf.md" 56 | - Definition "led-pmp" ("/D/led-pmp.md"), referenced as 57 | - "posterior model probabilies", referenced in 58 | - "/P/bic-der.md" 59 | - Definition "lfe" ("/D/lfe.md"), referenced as 60 | - "log family evidences", referenced in 61 | - "/P/lfe-lme.md" 62 | - Definition "llr" ("/D/llr.md"), referenced as 63 | - "log-likelihood ratio", referenced in 64 | - "/P/ci-wilks.md" 65 | - Definition "logreg" ("/D/logreg.md"), referenced as 66 | - "logistic regression model", referenced in 67 | - "/P/logreg-lonp.md" 68 | - Definition "lr" ("/D/lr.md"), referenced as 69 | - "likelihood ratio", referenced in 70 | - "/P/ci-wilks.md" 71 | - Definition "med" ("/D/med.md"), referenced as 72 | - "median", referenced in 73 | - "/P/cuni-med.md" 74 | - "/P/exp-med.md" 75 | - "/P/norm-med.md" 76 | - Definition "mlr-beta" ("/D/mlr-beta.md"), referenced as 77 | - "regression coefficients", referenced in 78 | - "/D/snr.md" 79 | - Definition "mlr-ols" ("/D/mlr-ols.md"), referenced as 80 | - "ordinary least squares", referenced in 81 | - "/P/rsq-der.md" 82 | - Definition "mode" ("/D/mode.md"), referenced as 83 | - "mode", referenced in 84 | - "/P/cuni-mode.md" 85 | - "/P/exp-mode.md" 86 | - "/P/norm-mode.md" 87 | - Definition "mom" ("/D/mom.md"), referenced as 88 | - "matching the moments", referenced in 89 | - "/P/beta-mom.md" 90 | - "method-of-moments estimates", referenced in 91 | - "/P/beta-mom.md" 92 | - Definition "mse" ("/D/mse.md"), referenced as 93 | - "is defined as", referenced in 94 | - "/P/mse-bnv.md" 95 | - "mean squared error", referenced in 96 | - "/P/mse-bnv.md" 97 | - Definition "mvn-ltt" ("/D/mvn-ltt.md"), referenced as 98 | - "linear transformation theorem", referenced in 99 | - "/P/mlr-wls.md" 100 | - Definition "mvt" ("/D/mvt.md"), referenced as 101 | - "multivariate t-distribution", referenced in 102 | - "/P/ng-marg.md" 103 | - Definition "pmp" ("/D/pmp.md"), referenced as 104 | - "posterior model probabilities", referenced in 105 | - "/P/pmp-bf.md" 106 | - "/P/pmp-lme.md" 107 | - "posterior model probability", referenced in 108 | - "/P/pmp-lbf.md" 109 | - "/P/pmp-lme.md" 110 | - "posterior probability", referenced in 111 | - "/P/bma-lme.md" 112 | - "/P/pmp-lbf.md" 113 | - Definition "poiss" ("/D/poiss.md"), referenced as 114 | - "Poisson distribution", referenced in 115 | - "/D/poiss-data.md" 116 | - "/D/poissexp.md" 117 | - "/P/poiss-pmf.md" 118 | - "definition of the Poisson distribution", referenced in 119 | - "/P/poiss-pmf.md" 120 | - Definition "post-odd" ("/D/post-odd.md"), referenced as 121 | - "posterior odds", referenced in 122 | - "/P/bayes-rule.md" 123 | - Definition "prior-conj" ("/D/prior-conj.md"), referenced as 124 | - "conjugate prior", referenced in 125 | - "/P/bin-prior.md" 126 | - "/P/blr-prior.md" 127 | - "/P/mult-prior.md" 128 | - "/P/poissexp-prior.md" 129 | - Definition "prior-odd" ("/D/prior-odd.md"), referenced as 130 | - "prior odds", referenced in 131 | - "/P/bayes-rule.md" 132 | - Definition "rexp" ("/D/rexp.md"), referenced as 133 | - "random experiment", referenced in 134 | - "/D/prob.md" 135 | - "random experiments", referenced in 136 | - "/P/ci-wilks.md" 137 | - Definition "rmat" ("/D/rmat.md"), referenced as 138 | - "random matrix", referenced in 139 | - "/D/dist-joint.md" 140 | - "/D/matn.md" 141 | - "/P/matn-pdf.md" 142 | - Definition "rvar" ("/D/rvar.md"), referenced as 143 | - "random variable", referenced in 144 | - "/D/bern.md" 145 | - "/D/beta.md" 146 | - "/D/bin.md" 147 | - "/D/cdf.md" 148 | - "/D/cuni.md" 149 | - "/D/dent.md" 150 | - "/D/dist.md" 151 | - "/D/ent.md" 152 | - "/D/exp.md" 153 | - "/D/gam.md" 154 | - "/D/kl.md" 155 | - "/D/mean.md" 156 | - "/D/mgf.md" 157 | - "/D/ng.md" 158 | - "/D/norm.md" 159 | - "/D/pdf.md" 160 | - "/D/pmf.md" 161 | - "/D/prob-marg.md" 162 | - "/D/qf.md" 163 | - "/D/var.md" 164 | - "/P/bern-mean.md" 165 | - "/P/bern-pmf.md" 166 | - "/P/beta-pdf.md" 167 | - "/P/bin-mean.md" 168 | - "/P/bin-pmf.md" 169 | - "/P/cuni-cdf.md" 170 | - "/P/cuni-mean.md" 171 | - "/P/cuni-med.md" 172 | - "/P/cuni-mode.md" 173 | - "/P/cuni-pdf.md" 174 | - "/P/cuni-qf.md" 175 | - "/P/dent-neg.md" 176 | - "/P/ent-nonneg.md" 177 | - "/P/exp-cdf.md" 178 | - "/P/exp-mean.md" 179 | - "/P/exp-med.md" 180 | - "/P/exp-mode.md" 181 | - "/P/exp-pdf.md" 182 | - "/P/exp-qf.md" 183 | - "/P/gam-kl.md" 184 | - "/P/gam-pdf.md" 185 | - "/P/mean-nonneg.md" 186 | - "/P/ng-kl.md" 187 | - "/P/norm-cdf.md" 188 | - "/P/norm-cdfwerf.md" 189 | - "/P/norm-dent.md" 190 | - "/P/norm-mean.md" 191 | - "/P/norm-med.md" 192 | - "/P/norm-mgf.md" 193 | - "/P/norm-mode.md" 194 | - "/P/norm-pdf.md" 195 | - "/P/norm-qf.md" 196 | - "/P/norm-var.md" 197 | - "/P/poiss-pmf.md" 198 | - "random variables", referenced in 199 | - "/D/dent-cond.md" 200 | - "/D/dent-joint.md" 201 | - "/D/dist-cond.md" 202 | - "/D/dist-joint.md" 203 | - "/D/dist-marg.md" 204 | - "/D/ent-cond.md" 205 | - "/D/ent-joint.md" 206 | - "/D/mi.md" 207 | - "/D/prob-cond.md" 208 | - "/D/prob-joint.md" 209 | - "/D/prob-marg.md" 210 | - "/P/bayes-rule.md" 211 | - "/P/bayes-th.md" 212 | - "/P/cmi-jcde.md" 213 | - "/P/cmi-mcde.md" 214 | - "/P/cmi-mjde.md" 215 | - "/P/dmi-jce.md" 216 | - "/P/dmi-mce.md" 217 | - "/P/dmi-mje.md" 218 | - "/P/mean-lin.md" 219 | - "/P/mean-mult.md" 220 | - Definition "rvec" ("/D/rvec.md"), referenced as 221 | - "random vector", referenced in 222 | - "/D/cat.md" 223 | - "/D/dir.md" 224 | - "/D/dist-joint.md" 225 | - "/D/mgf.md" 226 | - "/D/mult.md" 227 | - "/D/mvn.md" 228 | - "/D/ng.md" 229 | - "/P/cat-mean.md" 230 | - "/P/cat-pmf.md" 231 | - "/P/dir-pdf.md" 232 | - "/P/mult-mean.md" 233 | - "/P/mult-pmf.md" 234 | - "/P/mvn-kl.md" 235 | - "/P/mvn-pdf.md" 236 | - "/P/ng-kl.md" 237 | - Definition "snorm" ("/D/snorm.md"), referenced as 238 | - "standard normal distribution", referenced in 239 | - "/P/norm-cdfwerf.md" 240 | - Proof "beta-mean" ("/P/beta-mean.md"), referenced as 241 | - "Mean", referenced in 242 | - "/P/beta-mom.md" 243 | - Proof "beta-var" ("/P/beta-var.md"), referenced as 244 | - "variance", referenced in 245 | - "/P/beta-mom.md" 246 | - Proof "gam-logmean" ("/P/gam-logmean.md"), referenced as 247 | - "expected value of a logarithmized gamma variate", referenced in 248 | - "/P/gam-kl.md" 249 | - Proof "gam-mean" ("/P/gam-mean.md"), referenced as 250 | - "mean of the gamma distribution", referenced in 251 | - "/P/gam-kl.md" 252 | - "the relation", referenced in 253 | - "/P/ng-kl.md" 254 | - Proof "mean-sample" ("/P/mean-sample.md"), referenced as 255 | - "means", referenced in 256 | - "/P/poissexp-lme.md" 257 | - "/P/poissexp-post.md" 258 | - "/P/poissexp-prior.md" 259 | - "sample mean", referenced in 260 | - "/P/beta-mom.md" 261 | - "/P/poiss-mle.md" 262 | - Proof "mvn-mgf" ("/P/mvn-mgf.md"), referenced as 263 | - "moment-generating function of the multivariate normal distribution", referenced in 264 | - "/P/mvn-ltt.md" 265 | - Proof "mvn-qfmean" ("/P/mvn-qfmean.md"), referenced as 266 | - "expectation of a quadratic form for the multivariate normal distribution", referenced in 267 | - "/P/mvn-kl.md" 268 | - Proof "mvt-pdf" ("/P/mvt-pdf.md"), referenced as 269 | - "probability density function of a multivariate t-distribution", referenced in 270 | - "/P/ng-marg.md" 271 | - Proof "norm-gi" ("/P/norm-gi.md"), referenced as 272 | - "Gaussian integral", referenced in 273 | - "/P/norm-mgf.md" 274 | - Proof "norm-snorm" ("/P/norm-snorm.md"), referenced as 275 | - "are related to each other", referenced in 276 | - "/P/norm-cdfwerf.md" 277 | - Proof "poiss-pdf" ("/P/poiss-pdf.md"), referenced as 278 | - "probability mass function of the Poisson distribution", referenced in 279 | - "/P/poiss-mle.md" 280 | - Proof "ug-mle" ("/P/ug-mle.md"), referenced as 281 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 282 | - "/P/resvar-bias.md" 283 | - Proof "ug-unb" ("/P/ug-unb.md"), referenced as 284 | - "expectation of", referenced in 285 | - "/P/resvar-bias.md" 286 | - Proof "var-mean" ("/P/var-mean.md"), referenced as 287 | - "partition of variance into expected values", referenced in 288 | - "/P/resvar-bias.md" 289 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_06_06.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-06-06, 08:48): 2 | - Definition "bf" ("/D/bf.md"), referenced as 3 | - "Bayes factor", referenced in 4 | - "/P/bayes-rule.md" 5 | - "/P/lbf-lme.md" 6 | - "/P/pmp-bf.md" 7 | - "/P/pmp-lbf.md" 8 | - Definition "bias" ("/D/bias.md"), referenced as 9 | - "bias", referenced in 10 | - "/P/mse-bnv.md" 11 | - Definition "chi2" ("/D/chi2.md"), referenced as 12 | - "chi-squared distribution", referenced in 13 | - "/P/ci-wilks.md" 14 | - Definition "ci" ("/D/ci.md"), referenced as 15 | - "confidence interval", referenced in 16 | - "/P/ci-wilks.md" 17 | - Definition "dent-cross" ("/D/dent-cross.md"), referenced as 18 | - "differential cross-entropy", referenced in 19 | - "/P/kl-dent.md" 20 | - Definition "dof" ("/D/dof.md"), referenced as 21 | - "degree of freedom", referenced in 22 | - "/P/ci-wilks.md" 23 | - "degrees of freedom", referenced in 24 | - "/P/rsq-der.md" 25 | - Definition "ent-cross" ("/D/ent-cross.md"), referenced as 26 | - "cross-entropy", referenced in 27 | - "/P/kl-ent.md" 28 | - "/P/kl-nonneg.md" 29 | - Definition "est-unb" ("/D/est-unb.md"), referenced as 30 | - "bias", referenced in 31 | - "/P/resvar-bias.md" 32 | - "biased estimator", referenced in 33 | - "/P/resvar-bias.md" 34 | - "/P/resvar-unb.md" 35 | - "unbiased estimator", referenced in 36 | - "/P/resvar-unb.md" 37 | - Definition "est" ("/D/est.md"), referenced as 38 | - "parameter estimates", referenced in 39 | - "/P/snr-rsq.md" 40 | - Definition "gam-sgam" ("/D/gam-sgam.md"), referenced as 41 | - "acts as a scaling parameter", referenced in 42 | - "/P/gam-logmean.md" 43 | - Definition "iid" ("/D/iid.md"), referenced as 44 | - "independent and identically distributed", referenced in 45 | - "/P/beta-mom.md" 46 | - Definition "lbf" ("/D/lbf.md"), referenced as 47 | - "log Bayes factor", referenced in 48 | - "/P/lbf-lme.md" 49 | - "/P/pmp-lbf.md" 50 | - Definition "led-pmp" ("/D/led-pmp.md"), referenced as 51 | - "posterior model probabilies", referenced in 52 | - "/P/bic-der.md" 53 | - Definition "lfe" ("/D/lfe.md"), referenced as 54 | - "log family evidences", referenced in 55 | - "/P/lfe-lme.md" 56 | - Definition "llr" ("/D/llr.md"), referenced as 57 | - "log-likelihood ratio", referenced in 58 | - "/P/ci-wilks.md" 59 | - Definition "logreg" ("/D/logreg.md"), referenced as 60 | - "logistic regression model", referenced in 61 | - "/P/logreg-lonp.md" 62 | - "/P/logreg-pnlo.md" 63 | - Definition "lr" ("/D/lr.md"), referenced as 64 | - "likelihood ratio", referenced in 65 | - "/P/ci-wilks.md" 66 | - Definition "matn-ltt" ("/D/matn-ltt.md"), referenced as 67 | - "linear transformation theorem", referenced in 68 | - "/P/glm-wls.md" 69 | - Definition "meas-fct" ("/D/meas-fct.md"), referenced as 70 | - "measurable function", referenced in 71 | - "/D/rvar.md" 72 | - Definition "med" ("/D/med.md"), referenced as 73 | - "median", referenced in 74 | - "/P/cuni-med.md" 75 | - "/P/exp-med.md" 76 | - "/P/norm-med.md" 77 | - Definition "mlr-beta" ("/D/mlr-beta.md"), referenced as 78 | - "regression coefficients", referenced in 79 | - "/D/snr.md" 80 | - Definition "mlr-ols" ("/D/mlr-ols.md"), referenced as 81 | - "ordinary least squares", referenced in 82 | - "/P/rsq-der.md" 83 | - Definition "mode" ("/D/mode.md"), referenced as 84 | - "mode", referenced in 85 | - "/P/cuni-mode.md" 86 | - "/P/exp-mode.md" 87 | - "/P/norm-mode.md" 88 | - Definition "mom" ("/D/mom.md"), referenced as 89 | - "matching the moments", referenced in 90 | - "/P/beta-mom.md" 91 | - "method-of-moments estimates", referenced in 92 | - "/P/beta-mom.md" 93 | - Definition "mse" ("/D/mse.md"), referenced as 94 | - "is defined as", referenced in 95 | - "/P/mse-bnv.md" 96 | - "mean squared error", referenced in 97 | - "/P/mse-bnv.md" 98 | - Definition "mvn-ltt" ("/D/mvn-ltt.md"), referenced as 99 | - "linear transformation theorem", referenced in 100 | - "/P/mlr-wls.md" 101 | - Definition "mvt" ("/D/mvt.md"), referenced as 102 | - "multivariate t-distribution", referenced in 103 | - "/P/ng-marg.md" 104 | - Definition "ols" ("/D/ols.md"), referenced as 105 | - "ordinary least squares", referenced in 106 | - "/P/glm-ols.md" 107 | - Definition "pmp" ("/D/pmp.md"), referenced as 108 | - "posterior model probabilities", referenced in 109 | - "/P/pmp-bf.md" 110 | - "/P/pmp-lme.md" 111 | - "posterior model probability", referenced in 112 | - "/P/pmp-lbf.md" 113 | - "/P/pmp-lme.md" 114 | - "posterior probability", referenced in 115 | - "/P/bma-lme.md" 116 | - "/P/pmp-lbf.md" 117 | - Definition "post-odd" ("/D/post-odd.md"), referenced as 118 | - "posterior odds", referenced in 119 | - "/P/bayes-rule.md" 120 | - Definition "prior-conj" ("/D/prior-conj.md"), referenced as 121 | - "conjugate prior", referenced in 122 | - "/P/bin-prior.md" 123 | - "/P/blr-prior.md" 124 | - "/P/mult-prior.md" 125 | - "/P/poissexp-prior.md" 126 | - Definition "prior-odd" ("/D/prior-odd.md"), referenced as 127 | - "prior odds", referenced in 128 | - "/P/bayes-rule.md" 129 | - Definition "prob-spc" ("/D/prob-spc.md"), referenced as 130 | - "probability space", referenced in 131 | - "/D/rvar.md" 132 | - Definition "rexp" ("/D/rexp.md"), referenced as 133 | - "random experiment", referenced in 134 | - "/D/prob.md" 135 | - "/D/rvar.md" 136 | - "random experiments", referenced in 137 | - "/P/ci-wilks.md" 138 | - Definition "std" ("/D/std.md"), referenced as 139 | - "standard deviations", referenced in 140 | - "/D/corr.md" 141 | - "/P/cov-corr.md" 142 | - "/P/covmat-corrmat.md" 143 | - "/P/precmat-corrmat.md" 144 | - Definition "wls" ("/D/wls.md"), referenced as 145 | - "weighted least sqaures", referenced in 146 | - "/P/glm-wls.md" 147 | - Proof "beta-mean" ("/P/beta-mean.md"), referenced as 148 | - "Mean", referenced in 149 | - "/P/beta-mom.md" 150 | - Proof "beta-var" ("/P/beta-var.md"), referenced as 151 | - "variance", referenced in 152 | - "/P/beta-mom.md" 153 | - Proof "gam-cdf" ("/P/gam-cdf.md"), referenced as 154 | - "cumulative distribution function of the gamma-distributed", referenced in 155 | - "/P/gam-sgam.md" 156 | - Proof "gibbs-ineq" ("/P/gibbs-ineq.md"), referenced as 157 | - "Gibbs' inequality", referenced in 158 | - "/P/kl-nonneg.md" 159 | - Proof "mean-sample" ("/P/mean-sample.md"), referenced as 160 | - "means", referenced in 161 | - "/P/poissexp-lme.md" 162 | - "/P/poissexp-post.md" 163 | - "/P/poissexp-prior.md" 164 | - "sample mean", referenced in 165 | - "/P/beta-mom.md" 166 | - "/P/poiss-mle.md" 167 | - Proof "mvn-mgf" ("/P/mvn-mgf.md"), referenced as 168 | - "moment-generating function of the multivariate normal distribution", referenced in 169 | - "/P/mvn-ltt.md" 170 | - Proof "mvn-qfmean" ("/P/mvn-qfmean.md"), referenced as 171 | - "expectation of a quadratic form for the multivariate normal distribution", referenced in 172 | - "/P/mvn-kl.md" 173 | - Proof "mvt-pdf" ("/P/mvt-pdf.md"), referenced as 174 | - "probability density function of a multivariate t-distribution", referenced in 175 | - "/P/ng-marg.md" 176 | - Proof "norm-gi" ("/P/norm-gi.md"), referenced as 177 | - "Gaussian integral", referenced in 178 | - "/P/norm-mgf.md" 179 | - Proof "poiss-pdf" ("/P/poiss-pdf.md"), referenced as 180 | - "probability mass function of the Poisson distribution", referenced in 181 | - "/P/poiss-mle.md" 182 | - Proof "ug-mle" ("/P/ug-mle.md"), referenced as 183 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 184 | - "/P/resvar-bias.md" 185 | - Proof "ug-unb" ("/P/ug-unb.md"), referenced as 186 | - "expectation of", referenced in 187 | - "/P/resvar-bias.md" 188 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_07_28.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-07-28, 07:39): 2 | - Definition "bf" ("/D/bf.md"), referenced as 3 | - "Bayes factor", referenced in 4 | - "/P/bayes-rule.md" 5 | - Definition "bias" ("/D/bias.md"), referenced as 6 | - "bias", referenced in 7 | - "/P/mse-bnv.md" 8 | - Definition "chi2" ("/D/chi2.md"), referenced as 9 | - "chi-squared distribution", referenced in 10 | - "/P/ci-wilks.md" 11 | - Definition "ci" ("/D/ci.md"), referenced as 12 | - "confidence interval", referenced in 13 | - "/P/ci-wilks.md" 14 | - Definition "con" ("/D/con.md"), referenced as 15 | - "contrast matrix", referenced in 16 | - "/P/blr-pcr.md" 17 | - "contrast vector", referenced in 18 | - "/P/blr-pp.md" 19 | - Definition "const" ("/D/const.md"), referenced as 20 | - "always has the same value", referenced in 21 | - "/P/var-zero.md" 22 | - "constant", referenced in 23 | - "/P/var-const.md" 24 | - "/P/var-inv.md" 25 | - "/P/var-scal.md" 26 | - "/P/var-zero.md" 27 | - Definition "cr" ("/D/cr.md"), referenced as 28 | - "credibility level", referenced in 29 | - "/P/blr-pcr.md" 30 | - "credibility region", referenced in 31 | - "/P/blr-pcr.md" 32 | - Definition "dof" ("/D/dof.md"), referenced as 33 | - "degree of freedom", referenced in 34 | - "/P/ci-wilks.md" 35 | - "degrees of freedom", referenced in 36 | - "/P/blr-pcr.md" 37 | - "/P/blr-pp.md" 38 | - "/P/rsq-der.md" 39 | - Definition "est-unb" ("/D/est-unb.md"), referenced as 40 | - "bias", referenced in 41 | - "/P/resvar-bias.md" 42 | - "biased estimator", referenced in 43 | - "/P/resvar-bias.md" 44 | - "/P/resvar-unb.md" 45 | - "unbiased estimator", referenced in 46 | - "/P/resvar-unb.md" 47 | - Definition "est" ("/D/est.md"), referenced as 48 | - "parameter estimates", referenced in 49 | - "/P/snr-rsq.md" 50 | - Definition "f" ("/D/f.md"), referenced as 51 | - "F-distribution", referenced in 52 | - "/P/blr-pcr.md" 53 | - Definition "gam-sgam" ("/D/gam-sgam.md"), referenced as 54 | - "acts as a scaling parameter", referenced in 55 | - "/P/gam-logmean.md" 56 | - Definition "h0" ("/D/h0.md"), referenced as 57 | - "null hypothesis", referenced in 58 | - "/P/blr-pcr.md" 59 | - Definition "h1" ("/D/h1.md"), referenced as 60 | - "alternative hypothesis", referenced in 61 | - "/P/blr-pp.md" 62 | - Definition "iid" ("/D/iid.md"), referenced as 63 | - "independent and identically distributed", referenced in 64 | - "/P/beta-mom.md" 65 | - Definition "led-pmp" ("/D/led-pmp.md"), referenced as 66 | - "posterior model probabilies", referenced in 67 | - "/P/bic-der.md" 68 | - Definition "llr" ("/D/llr.md"), referenced as 69 | - "log-likelihood ratio", referenced in 70 | - "/P/ci-wilks.md" 71 | - Definition "lr" ("/D/lr.md"), referenced as 72 | - "likelihood ratio", referenced in 73 | - "/P/ci-wilks.md" 74 | - Definition "matn-ltt" ("/D/matn-ltt.md"), referenced as 75 | - "linear transformation theorem", referenced in 76 | - "/P/glm-wls.md" 77 | - Definition "meas-fct" ("/D/meas-fct.md"), referenced as 78 | - "measurable function", referenced in 79 | - "/D/rvar.md" 80 | - Definition "med" ("/D/med.md"), referenced as 81 | - "median", referenced in 82 | - "/P/cuni-med.md" 83 | - "/P/exp-med.md" 84 | - "/P/norm-med.md" 85 | - Definition "mlr-beta" ("/D/mlr-beta.md"), referenced as 86 | - "regression coefficients", referenced in 87 | - "/D/snr.md" 88 | - Definition "mlr-ols" ("/D/mlr-ols.md"), referenced as 89 | - "ordinary least squares", referenced in 90 | - "/P/rsq-der.md" 91 | - Definition "mode" ("/D/mode.md"), referenced as 92 | - "mode", referenced in 93 | - "/P/cuni-mode.md" 94 | - "/P/exp-mode.md" 95 | - "/P/norm-mode.md" 96 | - Definition "mom" ("/D/mom.md"), referenced as 97 | - "matching the moments", referenced in 98 | - "/P/beta-mom.md" 99 | - "method-of-moments estimates", referenced in 100 | - "/P/beta-mom.md" 101 | - Definition "mse" ("/D/mse.md"), referenced as 102 | - "is defined as", referenced in 103 | - "/P/mse-bnv.md" 104 | - "mean squared error", referenced in 105 | - "/P/mse-bnv.md" 106 | - Definition "mvn-ltt" ("/D/mvn-ltt.md"), referenced as 107 | - "linear transformation theorem", referenced in 108 | - "/P/mlr-wls.md" 109 | - "/P/mlr-wls2.md" 110 | - Definition "mvt" ("/D/mvt.md"), referenced as 111 | - "multivariate t-distribution", referenced in 112 | - "/P/blr-pcr.md" 113 | - "/P/blr-pp.md" 114 | - "/P/ng-marg.md" 115 | - Definition "ncst" ("/D/ncst.md"), referenced as 116 | - "non-central scaled t-distribution", referenced in 117 | - "/P/blr-pp.md" 118 | - Definition "odds" ("/D/odds.md"), referenced as 119 | - "odds ratio", referenced in 120 | - "/P/lbf-der.md" 121 | - "/P/pmp-bf.md" 122 | - "/P/pmp-lbf.md" 123 | - Definition "ols" ("/D/ols.md"), referenced as 124 | - "ordinary least squares", referenced in 125 | - "/P/glm-ols.md" 126 | - Definition "post-odd" ("/D/post-odd.md"), referenced as 127 | - "posterior odds", referenced in 128 | - "/P/bayes-rule.md" 129 | - Definition "prior-conj" ("/D/prior-conj.md"), referenced as 130 | - "conjugate prior", referenced in 131 | - "/P/bin-prior.md" 132 | - "/P/blr-prior.md" 133 | - "/P/mult-prior.md" 134 | - "/P/poissexp-prior.md" 135 | - Definition "prior-odd" ("/D/prior-odd.md"), referenced as 136 | - "prior odds", referenced in 137 | - "/P/bayes-rule.md" 138 | - Definition "prob-spc" ("/D/prob-spc.md"), referenced as 139 | - "probability space", referenced in 140 | - "/D/rvar.md" 141 | - Definition "rexp" ("/D/rexp.md"), referenced as 142 | - "random experiment", referenced in 143 | - "/D/prob.md" 144 | - "/D/rvar.md" 145 | - "random experiments", referenced in 146 | - "/P/ci-wilks.md" 147 | - Definition "std" ("/D/std.md"), referenced as 148 | - "standard deviations", referenced in 149 | - "/D/corr.md" 150 | - "/P/cov-corr.md" 151 | - "/P/covmat-corrmat.md" 152 | - "/P/precmat-corrmat.md" 153 | - Definition "t" ("/D/t.md"), referenced as 154 | - "t-distribution", referenced in 155 | - "/P/blr-pp.md" 156 | - Definition "wls" ("/D/wls.md"), referenced as 157 | - "weighted least sqaures", referenced in 158 | - "/P/glm-wls.md" 159 | - Proof "beta-mean" ("/P/beta-mean.md"), referenced as 160 | - "Mean", referenced in 161 | - "/P/beta-mom.md" 162 | - Proof "beta-var" ("/P/beta-var.md"), referenced as 163 | - "variance", referenced in 164 | - "/P/beta-mom.md" 165 | - Proof "cov-ind" ("/P/cov-ind.md"), referenced as 166 | - "covariance of independent random variables", referenced in 167 | - "/P/var-add.md" 168 | - Proof "gam-cdf" ("/P/gam-cdf.md"), referenced as 169 | - "cumulative distribution function of the gamma-distributed", referenced in 170 | - "/P/gam-sgam.md" 171 | - Proof "gibbs-ineq" ("/P/gibbs-ineq.md"), referenced as 172 | - "Gibbs' inequality", referenced in 173 | - "/P/kl-nonneg.md" 174 | - Proof "mean-sample" ("/P/mean-sample.md"), referenced as 175 | - "means", referenced in 176 | - "/P/poissexp-lme.md" 177 | - "/P/poissexp-post.md" 178 | - "/P/poissexp-prior.md" 179 | - "sample mean", referenced in 180 | - "/P/beta-mom.md" 181 | - "/P/poiss-mle.md" 182 | - Proof "mvn-mgf" ("/P/mvn-mgf.md"), referenced as 183 | - "moment-generating function of the multivariate normal distribution", referenced in 184 | - "/P/mvn-ltt.md" 185 | - Proof "mvn-qfmean" ("/P/mvn-qfmean.md"), referenced as 186 | - "expectation of a quadratic form for the multivariate normal distribution", referenced in 187 | - "/P/mvn-kl.md" 188 | - Proof "mvt-f" ("/P/mvt-f.md"), referenced as 189 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 190 | - "/P/blr-pcr.md" 191 | - Proof "mvt-ltt" ("/P/mvt-ltt.md"), referenced as 192 | - "linear transformation theorem for the multivariate t-distribution", referenced in 193 | - "/P/blr-pcr.md" 194 | - "/P/blr-pp.md" 195 | - Proof "mvt-pdf" ("/P/mvt-pdf.md"), referenced as 196 | - "probability density function of a multivariate t-distribution", referenced in 197 | - "/P/ng-marg.md" 198 | - Proof "ncst-t" ("/P/ncst-t.md"), referenced as 199 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 200 | - "/P/blr-pp.md" 201 | - Proof "norm-gi" ("/P/norm-gi.md"), referenced as 202 | - "Gaussian integral", referenced in 203 | - "/P/norm-mgf.md" 204 | - Proof "poiss-pdf" ("/P/poiss-pdf.md"), referenced as 205 | - "probability mass function of the Poisson distribution", referenced in 206 | - "/P/poiss-mle.md" 207 | - Proof "ug-mle" ("/P/ug-mle.md"), referenced as 208 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 209 | - "/P/resvar-bias.md" 210 | - Proof "ug-unb" ("/P/ug-unb.md"), referenced as 211 | - "expectation of", referenced in 212 | - "/P/resvar-bias.md" 213 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_08_26.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-08-26, 15:54): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "bma-der" ("/D/bma-der"), referenced as 6 | - "can be obtained", referenced in 7 | - "/P/bma-lme" 8 | - Definition "chi2" ("/D/chi2"), referenced as 9 | - "chi-squared distribution", referenced in 10 | - "/P/ci-wilks" 11 | - Definition "ci" ("/D/ci"), referenced as 12 | - "confidence interval", referenced in 13 | - "/P/ci-wilks" 14 | - Definition "con" ("/D/con"), referenced as 15 | - "contrast matrix", referenced in 16 | - "/P/blr-pcr" 17 | - "contrast vector", referenced in 18 | - "/P/blr-pp" 19 | - Definition "const" ("/D/const"), referenced as 20 | - "always has the same value", referenced in 21 | - "/P/var-zero" 22 | - "constant", referenced in 23 | - "/P/var-const" 24 | - "/P/var-inv" 25 | - "/P/var-scal" 26 | - "/P/var-zero" 27 | - Definition "cr" ("/D/cr"), referenced as 28 | - "credibility level", referenced in 29 | - "/P/blr-pcr" 30 | - "credibility region", referenced in 31 | - "/P/blr-pcr" 32 | - Definition "dof" ("/D/dof"), referenced as 33 | - "degree of freedom", referenced in 34 | - "/P/ci-wilks" 35 | - "degrees of freedom", referenced in 36 | - "/P/blr-pcr" 37 | - "/P/blr-pp" 38 | - "/P/rsq-der" 39 | - Definition "est-unb" ("/D/est-unb"), referenced as 40 | - "bias", referenced in 41 | - "/P/resvar-bias" 42 | - "biased estimator", referenced in 43 | - "/P/resvar-bias" 44 | - "/P/resvar-unb" 45 | - "unbiased estimator", referenced in 46 | - "/P/resvar-unb" 47 | - Definition "est" ("/D/est"), referenced as 48 | - "parameter estimates", referenced in 49 | - "/P/snr-rsq" 50 | - Definition "f" ("/D/f"), referenced as 51 | - "F-distribution", referenced in 52 | - "/P/blr-pcr" 53 | - Definition "h0" ("/D/h0"), referenced as 54 | - "null hypothesis", referenced in 55 | - "/P/blr-pcr" 56 | - Definition "h1" ("/D/h1"), referenced as 57 | - "alternative hypothesis", referenced in 58 | - "/P/blr-pp" 59 | - Definition "iid" ("/D/iid"), referenced as 60 | - "independent and identically distributed", referenced in 61 | - "/P/beta-mom" 62 | - Definition "llr" ("/D/llr"), referenced as 63 | - "log-likelihood ratio", referenced in 64 | - "/P/ci-wilks" 65 | - Definition "lr" ("/D/lr"), referenced as 66 | - "likelihood ratio", referenced in 67 | - "/P/ci-wilks" 68 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 69 | - "measurable function", referenced in 70 | - "/D/rvar" 71 | - Definition "med" ("/D/med"), referenced as 72 | - "median", referenced in 73 | - "/P/cuni-med" 74 | - "/P/exp-med" 75 | - "/P/norm-med" 76 | - Definition "mode" ("/D/mode"), referenced as 77 | - "mode", referenced in 78 | - "/D/fwhm" 79 | - "/P/cuni-mode" 80 | - "/P/exp-mode" 81 | - "/P/norm-mode" 82 | - Definition "mome" ("/D/mome"), referenced as 83 | - "matching the moments", referenced in 84 | - "/P/beta-mom" 85 | - "method-of-moments estimates", referenced in 86 | - "/P/beta-mom" 87 | - Definition "mse" ("/D/mse"), referenced as 88 | - "is defined as", referenced in 89 | - "/P/mse-bnv" 90 | - "mean squared error", referenced in 91 | - "/P/mse-bnv" 92 | - Definition "mvt" ("/D/mvt"), referenced as 93 | - "multivariate t-distribution", referenced in 94 | - "/P/blr-pcr" 95 | - "/P/blr-pp" 96 | - "/P/ng-marg" 97 | - Definition "ncst" ("/D/ncst"), referenced as 98 | - "non-central scaled t-distribution", referenced in 99 | - "/P/blr-pp" 100 | - Definition "odds" ("/D/odds"), referenced as 101 | - "odds ratio", referenced in 102 | - "/P/lbf-der" 103 | - "/P/pmp-bf" 104 | - "/P/pmp-lbf" 105 | - Definition "ols" ("/D/ols"), referenced as 106 | - "ordinary least squares", referenced in 107 | - "/P/glm-ols" 108 | - Definition "post-odd" ("/D/post-odd"), referenced as 109 | - "posterior odds", referenced in 110 | - "/P/bayes-rule" 111 | - Definition "prior-conj" ("/D/prior-conj"), referenced as 112 | - "conjugate prior", referenced in 113 | - "/P/bin-prior" 114 | - "/P/blr-prior" 115 | - "/P/mult-prior" 116 | - "/P/poissexp-prior" 117 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 118 | - "prior odds", referenced in 119 | - "/P/bayes-rule" 120 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 121 | - "probability space", referenced in 122 | - "/D/rvar" 123 | - Definition "rexp" ("/D/rexp"), referenced as 124 | - "random experiment", referenced in 125 | - "/D/prob" 126 | - "/D/rvar" 127 | - "random experiments", referenced in 128 | - "/P/ci-wilks" 129 | - Definition "std" ("/D/std"), referenced as 130 | - "standard deviations", referenced in 131 | - "/D/corr" 132 | - "/P/cov-corr" 133 | - "/P/covmat-corrmat" 134 | - "/P/precmat-corrmat" 135 | - Definition "t" ("/D/t"), referenced as 136 | - "t-distribution", referenced in 137 | - "/P/blr-pp" 138 | - Definition "wls" ("/D/wls"), referenced as 139 | - "weighted least sqaures", referenced in 140 | - "/P/glm-wls" 141 | - Proof "beta-mean" ("/P/beta-mean"), referenced as 142 | - "Mean", referenced in 143 | - "/P/beta-mom" 144 | - Proof "beta-var" ("/P/beta-var"), referenced as 145 | - "variance", referenced in 146 | - "/P/beta-mom" 147 | - Proof "cov-ind" ("/P/cov-ind"), referenced as 148 | - "covariance of independent random variables", referenced in 149 | - "/P/var-add" 150 | - Proof "gam-cdf" ("/P/gam-cdf"), referenced as 151 | - "cumulative distribution function of the gamma-distributed", referenced in 152 | - "/P/gam-sgam" 153 | - Proof "gibbs-ineq" ("/P/gibbs-ineq"), referenced as 154 | - "Gibbs' inequality", referenced in 155 | - "/P/kl-nonneg" 156 | - Proof "logsum-ineq" ("/P/logsum-ineq"), referenced as 157 | - "log sum inequality", referenced in 158 | - "/P/kl-conv" 159 | - Proof "mean-sample" ("/P/mean-sample"), referenced as 160 | - "means", referenced in 161 | - "/P/poissexp-lme" 162 | - "/P/poissexp-post" 163 | - "/P/poissexp-prior" 164 | - "sample mean", referenced in 165 | - "/P/beta-mom" 166 | - "/P/poiss-mle" 167 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 168 | - "moment-generating function of the multivariate normal distribution", referenced in 169 | - "/P/mvn-ltt" 170 | - Proof "mvt-f" ("/P/mvt-f"), referenced as 171 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 172 | - "/P/blr-pcr" 173 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 174 | - "linear transformation theorem for the multivariate t-distribution", referenced in 175 | - "/P/blr-pcr" 176 | - "/P/blr-pp" 177 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 178 | - "probability density function of a multivariate t-distribution", referenced in 179 | - "/P/ng-marg" 180 | - Proof "ncst-t" ("/P/ncst-t"), referenced as 181 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 182 | - "/P/blr-pp" 183 | - Proof "norm-gi" ("/P/norm-gi"), referenced as 184 | - "Gaussian integral", referenced in 185 | - "/P/norm-mgf" 186 | - Proof "ug-mle" ("/P/ug-mle"), referenced as 187 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 188 | - "/P/resvar-bias" 189 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_09_09.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-09-09, 08:49): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "chi2" ("/D/chi2"), referenced as 6 | - "chi-squared distribution", referenced in 7 | - "/P/ci-wilks" 8 | - Definition "ci" ("/D/ci"), referenced as 9 | - "confidence interval", referenced in 10 | - "/P/ci-wilks" 11 | - Definition "con" ("/D/con"), referenced as 12 | - "contrast matrix", referenced in 13 | - "/P/blr-pcr" 14 | - "contrast vector", referenced in 15 | - "/P/blr-pp" 16 | - Definition "cr" ("/D/cr"), referenced as 17 | - "credibility level", referenced in 18 | - "/P/blr-pcr" 19 | - "credibility region", referenced in 20 | - "/P/blr-pcr" 21 | - Definition "dof" ("/D/dof"), referenced as 22 | - "degree of freedom", referenced in 23 | - "/P/ci-wilks" 24 | - "degrees of freedom", referenced in 25 | - "/P/blr-pcr" 26 | - "/P/blr-pp" 27 | - "/P/rsq-der" 28 | - Definition "est-unb" ("/D/est-unb"), referenced as 29 | - "bias", referenced in 30 | - "/P/resvar-bias" 31 | - "biased estimator", referenced in 32 | - "/P/resvar-bias" 33 | - "/P/resvar-unb" 34 | - "unbiased estimator", referenced in 35 | - "/P/resvar-unb" 36 | - Definition "est" ("/D/est"), referenced as 37 | - "parameter estimates", referenced in 38 | - "/P/snr-rsq" 39 | - Definition "f" ("/D/f"), referenced as 40 | - "F-distribution", referenced in 41 | - "/P/blr-pcr" 42 | - Definition "h0" ("/D/h0"), referenced as 43 | - "null hypothesis", referenced in 44 | - "/P/blr-pcr" 45 | - Definition "h1" ("/D/h1"), referenced as 46 | - "alternative hypothesis", referenced in 47 | - "/P/blr-pp" 48 | - Definition "iid" ("/D/iid"), referenced as 49 | - "independent and identically distributed", referenced in 50 | - "/P/beta-mom" 51 | - Definition "llr" ("/D/llr"), referenced as 52 | - "log-likelihood ratio", referenced in 53 | - "/P/ci-wilks" 54 | - Definition "lr" ("/D/lr"), referenced as 55 | - "likelihood ratio", referenced in 56 | - "/P/ci-wilks" 57 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 58 | - "measurable function", referenced in 59 | - "/D/rvar" 60 | - Definition "med" ("/D/med"), referenced as 61 | - "median", referenced in 62 | - "/P/cuni-med" 63 | - "/P/exp-med" 64 | - "/P/norm-med" 65 | - Definition "mode" ("/D/mode"), referenced as 66 | - "mode", referenced in 67 | - "/D/fwhm" 68 | - "/P/cuni-mode" 69 | - "/P/exp-mode" 70 | - "/P/norm-mode" 71 | - Definition "mom-cent" ("/D/mom-cent"), referenced as 72 | - "central moment", referenced in 73 | - "/P/momcent-1st" 74 | - Definition "mome" ("/D/mome"), referenced as 75 | - "matching the moments", referenced in 76 | - "/P/beta-mom" 77 | - "method-of-moments estimates", referenced in 78 | - "/P/beta-mom" 79 | - Definition "mse" ("/D/mse"), referenced as 80 | - "is defined as", referenced in 81 | - "/P/mse-bnv" 82 | - "mean squared error", referenced in 83 | - "/P/mse-bnv" 84 | - Definition "mvt" ("/D/mvt"), referenced as 85 | - "multivariate t-distribution", referenced in 86 | - "/P/blr-pcr" 87 | - "/P/blr-pp" 88 | - "/P/ng-marg" 89 | - Definition "ncst" ("/D/ncst"), referenced as 90 | - "non-central scaled t-distribution", referenced in 91 | - "/P/blr-pp" 92 | - Definition "nw" ("/D/nw"), referenced as 93 | - "normal-Wishart distribution", referenced in 94 | - "/P/mblr-post" 95 | - "/P/mblr-prior" 96 | - Definition "odds" ("/D/odds"), referenced as 97 | - "odds ratio", referenced in 98 | - "/P/lbf-der" 99 | - "/P/pmp-bf" 100 | - "/P/pmp-lbf" 101 | - Definition "ols" ("/D/ols"), referenced as 102 | - "ordinary least squares", referenced in 103 | - "/P/glm-ols" 104 | - Definition "post-odd" ("/D/post-odd"), referenced as 105 | - "posterior odds", referenced in 106 | - "/P/bayes-rule" 107 | - Definition "prior-conj" ("/D/prior-conj"), referenced as 108 | - "conjugate prior", referenced in 109 | - "/P/bin-prior" 110 | - "/P/blr-prior" 111 | - "/P/mblr-prior" 112 | - "/P/mult-prior" 113 | - "/P/poissexp-prior" 114 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 115 | - "prior odds", referenced in 116 | - "/P/bayes-rule" 117 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 118 | - "probability space", referenced in 119 | - "/D/rvar" 120 | - Definition "rexp" ("/D/rexp"), referenced as 121 | - "random experiment", referenced in 122 | - "/D/prob" 123 | - "/D/rvar" 124 | - "random experiments", referenced in 125 | - "/P/ci-wilks" 126 | - Definition "t" ("/D/t"), referenced as 127 | - "t-distribution", referenced in 128 | - "/P/blr-pp" 129 | - Definition "wls" ("/D/wls"), referenced as 130 | - "weighted least sqaures", referenced in 131 | - "/P/glm-wls" 132 | - Proof "beta-mean" ("/P/beta-mean"), referenced as 133 | - "Mean", referenced in 134 | - "/P/beta-mom" 135 | - Proof "beta-var" ("/P/beta-var"), referenced as 136 | - "variance", referenced in 137 | - "/P/beta-mom" 138 | - Proof "gam-cdf" ("/P/gam-cdf"), referenced as 139 | - "cumulative distribution function of the gamma-distributed", referenced in 140 | - "/P/gam-sgam" 141 | - Proof "mean-sample" ("/P/mean-sample"), referenced as 142 | - "means", referenced in 143 | - "/P/poissexp-lme" 144 | - "/P/poissexp-post" 145 | - "/P/poissexp-prior" 146 | - "sample mean", referenced in 147 | - "/P/beta-mom" 148 | - "/P/poiss-mle" 149 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 150 | - "moment-generating function of the multivariate normal distribution", referenced in 151 | - "/P/mvn-ltt" 152 | - Proof "mvt-f" ("/P/mvt-f"), referenced as 153 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 154 | - "/P/blr-pcr" 155 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 156 | - "linear transformation theorem for the multivariate t-distribution", referenced in 157 | - "/P/blr-pcr" 158 | - "/P/blr-pp" 159 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 160 | - "probability density function of a multivariate t-distribution", referenced in 161 | - "/P/ng-marg" 162 | - Proof "ncst-t" ("/P/ncst-t"), referenced as 163 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 164 | - "/P/blr-pp" 165 | - Proof "norm-gi" ("/P/norm-gi"), referenced as 166 | - "Gaussian integral", referenced in 167 | - "/P/norm-mgf" 168 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 169 | - "probability density function of which", referenced in 170 | - "/P/mblr-prior" 171 | - Proof "ug-mle" ("/P/ug-mle"), referenced as 172 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 173 | - "/P/resvar-bias" 174 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 175 | - "probability density function of the Wishart distribution", referenced in 176 | - "/P/mblr-lme" 177 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2020_12_02.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2020-12-02, 22:30): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "ci" ("/D/ci"), referenced as 6 | - "confidence interval", referenced in 7 | - "/P/ci-wilks" 8 | - Definition "con" ("/D/con"), referenced as 9 | - "contrast matrix", referenced in 10 | - "/P/blr-pcr" 11 | - "contrast vector", referenced in 12 | - "/P/blr-pp" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/P/lme-anc" 21 | - "data set", referenced in 22 | - "/D/cvlme" 23 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 24 | - "exponential family", referenced in 25 | - "/P/dir-mle" 26 | - Definition "dof" ("/D/dof"), referenced as 27 | - "degree of freedom", referenced in 28 | - "/P/ci-wilks" 29 | - "degrees of freedom", referenced in 30 | - "/P/blr-pcr" 31 | - "/P/blr-pp" 32 | - "/P/rsq-der" 33 | - Definition "eb" ("/D/eb"), referenced as 34 | - "Empirical Bayesian", referenced in 35 | - "/D/eblme" 36 | - Definition "est-unb" ("/D/est-unb"), referenced as 37 | - "bias", referenced in 38 | - "/P/resvar-bias" 39 | - "biased estimator", referenced in 40 | - "/P/resvar-bias" 41 | - "/P/resvar-unb" 42 | - "unbiased estimator", referenced in 43 | - "/P/resvar-unb" 44 | - Definition "est" ("/D/est"), referenced as 45 | - "parameter estimates", referenced in 46 | - "/P/snr-rsq" 47 | - Definition "f" ("/D/f"), referenced as 48 | - "F-distribution", referenced in 49 | - "/P/blr-pcr" 50 | - Definition "h0" ("/D/h0"), referenced as 51 | - "null hypothesis", referenced in 52 | - "/P/blr-pcr" 53 | - Definition "h1" ("/D/h1"), referenced as 54 | - "alternative hypothesis", referenced in 55 | - "/P/blr-pp" 56 | - Definition "iid" ("/D/iid"), referenced as 57 | - "independent and identically distributed", referenced in 58 | - "/P/beta-mom" 59 | - Definition "llr" ("/D/llr"), referenced as 60 | - "log-likelihood ratio", referenced in 61 | - "/P/ci-wilks" 62 | - Definition "lr" ("/D/lr"), referenced as 63 | - "likelihood ratio", referenced in 64 | - "/P/ci-wilks" 65 | - Definition "mean-lotus" ("/D/mean-lotus"), referenced as 66 | - "expectation", referenced in 67 | - "/P/lme-anc" 68 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 69 | - "measurable function", referenced in 70 | - "/D/rvar" 71 | - Definition "mome" ("/D/mome"), referenced as 72 | - "matching the moments", referenced in 73 | - "/P/beta-mom" 74 | - "method-of-moments estimates", referenced in 75 | - "/P/beta-mom" 76 | - Definition "mse" ("/D/mse"), referenced as 77 | - "is defined as", referenced in 78 | - "/P/mse-bnv" 79 | - "mean squared error", referenced in 80 | - "/P/mse-bnv" 81 | - Definition "mvt" ("/D/mvt"), referenced as 82 | - "multivariate t-distribution", referenced in 83 | - "/P/blr-pcr" 84 | - "/P/blr-pp" 85 | - "/P/ng-marg" 86 | - Definition "ncst" ("/D/ncst"), referenced as 87 | - "non-central scaled t-distribution", referenced in 88 | - "/P/blr-pp" 89 | - Definition "norm-pdf" ("/D/norm-pdf"), referenced as 90 | - "probability density function of the normal distribution", referenced in 91 | - "/P/chi2-pdf" 92 | - Definition "nw" ("/D/nw"), referenced as 93 | - "normal-Wishart distribution", referenced in 94 | - "/P/mblr-post" 95 | - "/P/mblr-prior" 96 | - Definition "odds" ("/D/odds"), referenced as 97 | - "odds ratio", referenced in 98 | - "/P/lbf-der" 99 | - "/P/pmp-bf" 100 | - "/P/pmp-lbf" 101 | - Definition "ols" ("/D/ols"), referenced as 102 | - "ordinary least squares", referenced in 103 | - "/P/glm-ols" 104 | - Definition "post-odd" ("/D/post-odd"), referenced as 105 | - "posterior odds", referenced in 106 | - "/P/bayes-rule" 107 | - Definition "prec" ("/D/prec"), referenced as 108 | - "precision", referenced in 109 | - "/D/prior-flat" 110 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 111 | - "prior odds", referenced in 112 | - "/P/bayes-rule" 113 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 114 | - "probability space", referenced in 115 | - "/D/rvar" 116 | - Definition "samp" ("/D/samp"), referenced as 117 | - "sample", referenced in 118 | - "/D/max" 119 | - "/D/med" 120 | - "/D/min" 121 | - "/D/mode" 122 | - Definition "t" ("/D/t"), referenced as 123 | - "t-distribution", referenced in 124 | - "/P/blr-pp" 125 | - Definition "vb" ("/D/vb"), referenced as 126 | - "Variational Bayesian", referenced in 127 | - "/D/vblme" 128 | - "approximate", referenced in 129 | - "/D/vblme" 130 | - Definition "wls" ("/D/wls"), referenced as 131 | - "weighted least sqaures", referenced in 132 | - "/P/glm-wls" 133 | - Proof "beta-mean" ("/P/beta-mean"), referenced as 134 | - "Mean", referenced in 135 | - "/P/beta-mom" 136 | - Proof "beta-var" ("/P/beta-var"), referenced as 137 | - "variance", referenced in 138 | - "/P/beta-mom" 139 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 140 | - "relationship between the Dirichlet and the gamma distribution", referenced in 141 | - "/P/dir-ep" 142 | - Proof "mean-sample" ("/P/mean-sample"), referenced as 143 | - "means", referenced in 144 | - "/P/poissexp-lme" 145 | - "/P/poissexp-post" 146 | - "/P/poissexp-prior" 147 | - "sample mean", referenced in 148 | - "/P/beta-mom" 149 | - "/P/poiss-mle" 150 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 151 | - "moment-generating function of the multivariate normal distribution", referenced in 152 | - "/P/mvn-ltt" 153 | - Proof "mvt-f" ("/P/mvt-f"), referenced as 154 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 155 | - "/P/blr-pcr" 156 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 157 | - "linear transformation theorem for the multivariate t-distribution", referenced in 158 | - "/P/blr-pcr" 159 | - "/P/blr-pp" 160 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 161 | - "probability density function of a multivariate t-distribution", referenced in 162 | - "/P/ng-marg" 163 | - Proof "ncst-t" ("/P/ncst-t"), referenced as 164 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 165 | - "/P/blr-pp" 166 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 167 | - "probability density function of which", referenced in 168 | - "/P/mblr-prior" 169 | - Proof "ug-mle" ("/P/ug-mle"), referenced as 170 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 171 | - "/P/resvar-bias" 172 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 173 | - "probability density function of the Wishart distribution", referenced in 174 | - "/P/mblr-lme" 175 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2021_03_24.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2021-03-24, 16:09): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "ci" ("/D/ci"), referenced as 6 | - "confidence interval", referenced in 7 | - "/P/ci-wilks" 8 | - Definition "con" ("/D/con"), referenced as 9 | - "contrast matrix", referenced in 10 | - "/P/blr-pcr" 11 | - "contrast vector", referenced in 12 | - "/P/blr-pp" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/P/lme-anc" 21 | - "data set", referenced in 22 | - "/D/cvlme" 23 | - "measured data", referenced in 24 | - "/D/cval" 25 | - "/D/hyp" 26 | - "/D/pval" 27 | - "/D/test" 28 | - "/D/tstat" 29 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 30 | - "exponential family", referenced in 31 | - "/P/dir-mle" 32 | - Definition "dist-samp" ("/D/dist-samp"), referenced as 33 | - "sampling distribution", referenced in 34 | - "/D/hyp-simp" 35 | - Definition "dof" ("/D/dof"), referenced as 36 | - "degree of freedom", referenced in 37 | - "/P/ci-wilks" 38 | - "degrees of freedom", referenced in 39 | - "/P/blr-pcr" 40 | - "/P/blr-pp" 41 | - "/P/rsq-der" 42 | - "/P/ug-ttest1" 43 | - "/P/ug-ttest2" 44 | - "/P/ug-ttestp" 45 | - Definition "eb" ("/D/eb"), referenced as 46 | - "Empirical Bayesian", referenced in 47 | - "/D/eblme" 48 | - Definition "est-unb" ("/D/est-unb"), referenced as 49 | - "bias", referenced in 50 | - "/P/resvar-bias" 51 | - "biased estimator", referenced in 52 | - "/P/resvar-bias" 53 | - "/P/resvar-unb" 54 | - "unbiased estimator", referenced in 55 | - "/P/resvar-unb" 56 | - Definition "est" ("/D/est"), referenced as 57 | - "parameter estimates", referenced in 58 | - "/P/snr-rsq" 59 | - Definition "f" ("/D/f"), referenced as 60 | - "F-distribution", referenced in 61 | - "/P/blr-pcr" 62 | - Definition "hyp-tail" ("/D/hyp-tail"), referenced as 63 | - "one-tailed hypothesis", referenced in 64 | - "/D/pval" 65 | - "two-tailed hypothesis", referenced in 66 | - "/D/pval" 67 | - Definition "iid" ("/D/iid"), referenced as 68 | - "independent and identically distributed", referenced in 69 | - "/P/beta-mom" 70 | - Definition "llr" ("/D/llr"), referenced as 71 | - "log-likelihood ratio", referenced in 72 | - "/P/ci-wilks" 73 | - Definition "lr" ("/D/lr"), referenced as 74 | - "likelihood ratio", referenced in 75 | - "/P/ci-wilks" 76 | - Definition "mean-lotus" ("/D/mean-lotus"), referenced as 77 | - "expectation", referenced in 78 | - "/P/lme-anc" 79 | - Definition "mean-samp" ("/D/mean-samp"), referenced as 80 | - "sample mean", referenced in 81 | - "/P/ug-ttest1" 82 | - "/P/ug-ttestp" 83 | - "/P/ugkv-anc" 84 | - "/P/ugkv-cvlbf" 85 | - "/P/ugkv-cvlme" 86 | - "/P/ugkv-lbf" 87 | - "/P/ugkv-lbfmean" 88 | - "/P/ugkv-lme" 89 | - "/P/ugkv-post" 90 | - "/P/ugkv-ztest1" 91 | - "/P/ugkv-ztestp" 92 | - "sample means", referenced in 93 | - "/P/ug-ttest2" 94 | - "/P/ugkv-ztest2" 95 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 96 | - "measurable function", referenced in 97 | - "/D/rvar" 98 | - Definition "mome" ("/D/mome"), referenced as 99 | - "matching the moments", referenced in 100 | - "/P/beta-mom" 101 | - "method-of-moments estimates", referenced in 102 | - "/P/beta-mom" 103 | - Definition "mse" ("/D/mse"), referenced as 104 | - "is defined as", referenced in 105 | - "/P/mse-bnv" 106 | - "mean squared error", referenced in 107 | - "/P/mse-bnv" 108 | - Definition "mvt" ("/D/mvt"), referenced as 109 | - "multivariate t-distribution", referenced in 110 | - "/P/blr-pcr" 111 | - "/P/blr-pp" 112 | - "/P/ng-marg" 113 | - Definition "ncst" ("/D/ncst"), referenced as 114 | - "non-central scaled t-distribution", referenced in 115 | - "/P/blr-pp" 116 | - Definition "norm-pdf" ("/D/norm-pdf"), referenced as 117 | - "probability density function of the normal distribution", referenced in 118 | - "/P/chi2-pdf" 119 | - Definition "nw" ("/D/nw"), referenced as 120 | - "normal-Wishart distribution", referenced in 121 | - "/P/mblr-post" 122 | - "/P/mblr-prior" 123 | - Definition "odds" ("/D/odds"), referenced as 124 | - "odds ratio", referenced in 125 | - "/P/lbf-der" 126 | - "/P/pmp-bf" 127 | - "/P/pmp-lbf" 128 | - Definition "ols" ("/D/ols"), referenced as 129 | - "ordinary least squares", referenced in 130 | - "/P/glm-ols" 131 | - Definition "ooslme" ("/D/ooslme"), referenced as 132 | - "out-of-sample log model evidence", referenced in 133 | - "/P/ugkv-cvlme" 134 | - Definition "post-odd" ("/D/post-odd"), referenced as 135 | - "posterior odds", referenced in 136 | - "/P/bayes-rule" 137 | - Definition "prec" ("/D/prec"), referenced as 138 | - "inverse variance or precision", referenced in 139 | - "/P/ugkv-anc" 140 | - "/P/ugkv-cvlbf" 141 | - "/P/ugkv-cvlbfmean" 142 | - "/P/ugkv-cvlme" 143 | - "/P/ugkv-lbf" 144 | - "/P/ugkv-lbfmean" 145 | - "/P/ugkv-lme" 146 | - "/P/ugkv-post" 147 | - "precision", referenced in 148 | - "/D/prior-flat" 149 | - "/P/ugkv-prior" 150 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 151 | - "prior odds", referenced in 152 | - "/P/bayes-rule" 153 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 154 | - "probability space", referenced in 155 | - "/D/rvar" 156 | - Definition "samp" ("/D/samp"), referenced as 157 | - "sample", referenced in 158 | - "/D/max" 159 | - "/D/med" 160 | - "/D/min" 161 | - "/D/mode" 162 | - Definition "std-pool" ("/D/std-pool"), referenced as 163 | - "pooled standard deviation", referenced in 164 | - "/P/ug-ttest2" 165 | - "/P/ugkv-ztest2" 166 | - Definition "t" ("/D/t"), referenced as 167 | - "Student's t-distribution", referenced in 168 | - "/P/ug-ttest1" 169 | - "/P/ug-ttest2" 170 | - "/P/ug-ttestp" 171 | - "t-distribution", referenced in 172 | - "/P/blr-pp" 173 | - Definition "var-samp" ("/D/var-samp"), referenced as 174 | - "sample variance", referenced in 175 | - "/P/ug-ttest1" 176 | - "/P/ug-ttestp" 177 | - "sample variances", referenced in 178 | - "/P/ug-ttest2" 179 | - Definition "vb" ("/D/vb"), referenced as 180 | - "Variational Bayesian", referenced in 181 | - "/D/vblme" 182 | - "approximate", referenced in 183 | - "/D/vblme" 184 | - Definition "wls" ("/D/wls"), referenced as 185 | - "weighted least sqaures", referenced in 186 | - "/P/glm-wls" 187 | - Proof "beta-mean" ("/P/beta-mean"), referenced as 188 | - "Mean", referenced in 189 | - "/P/beta-mom" 190 | - Proof "beta-var" ("/P/beta-var"), referenced as 191 | - "variance", referenced in 192 | - "/P/beta-mom" 193 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 194 | - "relationship between the Dirichlet and the gamma distribution", referenced in 195 | - "/P/dir-ep" 196 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 197 | - "Wilks' theorem", referenced in 198 | - "/P/ci-wilks" 199 | - Proof "mean-sample" ("/P/mean-sample"), referenced as 200 | - "means", referenced in 201 | - "/P/poissexp-lme" 202 | - "/P/poissexp-post" 203 | - "/P/poissexp-prior" 204 | - "sample mean", referenced in 205 | - "/P/beta-mom" 206 | - "/P/poiss-mle" 207 | - "/P/ugkv-mle" 208 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 209 | - "moment-generating function of the multivariate normal distribution", referenced in 210 | - "/P/mvn-ltt" 211 | - Proof "mvt-f" ("/P/mvt-f"), referenced as 212 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 213 | - "/P/blr-pcr" 214 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 215 | - "linear transformation theorem for the multivariate t-distribution", referenced in 216 | - "/P/blr-pcr" 217 | - "/P/blr-pp" 218 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 219 | - "probability density function of a multivariate t-distribution", referenced in 220 | - "/P/ng-marg" 221 | - Proof "ncst-t" ("/P/ncst-t"), referenced as 222 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 223 | - "/P/blr-pp" 224 | - Proof "norm-chi2" ("/P/norm-chi2"), referenced as 225 | - "sample variances calculated from independent normal random variables follow a chi-squared distribution", referenced in 226 | - "/P/ug-ttest1" 227 | - "/P/ug-ttest2" 228 | - Proof "norm-t" ("/P/norm-t"), referenced as 229 | - "the ratio of a standard normal random variable and a (normalized) chi-squared random variable follows a t-distribution", referenced in 230 | - "/P/ug-ttest1" 231 | - "/P/ug-ttest2" 232 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 233 | - "probability density function of which", referenced in 234 | - "/P/mblr-prior" 235 | - Proof "ug-mle" ("/P/ug-mle"), referenced as 236 | - "maximum likelihood estimator for the univariate Gaussian with unknown variance", referenced in 237 | - "/P/resvar-bias" 238 | - Proof "ug-ztest1" ("/P/ug-ztest1"), referenced as 239 | - "one-sample z-test", referenced in 240 | - "/P/ugkv-ztestp" 241 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 242 | - "probability density function of the Wishart distribution", referenced in 243 | - "/P/mblr-lme" 244 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2021_05_04.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2021-05-04, 09:19): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "ci" ("/D/ci"), referenced as 6 | - "confidence interval", referenced in 7 | - "/P/ci-wilks" 8 | - Definition "con" ("/D/con"), referenced as 9 | - "contrast matrix", referenced in 10 | - "/P/blr-pcr" 11 | - "contrast vector", referenced in 12 | - "/P/blr-pp" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/P/lme-anc" 21 | - "data set", referenced in 22 | - "/D/cvlme" 23 | - "measured data", referenced in 24 | - "/D/cval" 25 | - "/D/hyp" 26 | - "/D/pval" 27 | - "/D/test" 28 | - "/D/tstat" 29 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 30 | - "exponential family", referenced in 31 | - "/P/dir-mle" 32 | - Definition "dof" ("/D/dof"), referenced as 33 | - "degree of freedom", referenced in 34 | - "/P/ci-wilks" 35 | - "degrees of freedom", referenced in 36 | - "/D/f" 37 | - "/P/blr-pcr" 38 | - "/P/blr-pp" 39 | - "/P/rsq-der" 40 | - "/P/ug-ttest1" 41 | - "/P/ug-ttest2" 42 | - "/P/ug-ttestp" 43 | - Definition "est-unb" ("/D/est-unb"), referenced as 44 | - "bias", referenced in 45 | - "/P/resvar-bias" 46 | - "biased estimator", referenced in 47 | - "/P/resvar-bias" 48 | - "/P/resvar-unb" 49 | - "unbiased estimator", referenced in 50 | - "/P/resvar-unb" 51 | - Definition "est" ("/D/est"), referenced as 52 | - "parameter estimates", referenced in 53 | - "/P/snr-rsq" 54 | - Definition "iid" ("/D/iid"), referenced as 55 | - "independent and identically distributed", referenced in 56 | - "/P/beta-mome" 57 | - Definition "llr" ("/D/llr"), referenced as 58 | - "log-likelihood ratio", referenced in 59 | - "/P/ci-wilks" 60 | - Definition "lr" ("/D/lr"), referenced as 61 | - "likelihood ratio", referenced in 62 | - "/P/ci-wilks" 63 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 64 | - "sample means", referenced in 65 | - "/P/poissexp-mle" 66 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 67 | - "measurable function", referenced in 68 | - "/D/rvar" 69 | - Definition "mse" ("/D/mse"), referenced as 70 | - "is defined as", referenced in 71 | - "/P/mse-bnv" 72 | - "mean squared error", referenced in 73 | - "/P/mse-bnv" 74 | - Definition "ncst" ("/D/ncst"), referenced as 75 | - "non-central scaled t-distribution", referenced in 76 | - "/P/blr-pp" 77 | - Definition "nw" ("/D/nw"), referenced as 78 | - "normal-Wishart distribution", referenced in 79 | - "/P/mblr-post" 80 | - "/P/mblr-prior" 81 | - Definition "odds" ("/D/odds"), referenced as 82 | - "odds ratio", referenced in 83 | - "/P/lbf-der" 84 | - "/P/pmp-bf" 85 | - "/P/pmp-lbf" 86 | - Definition "ooslme" ("/D/ooslme"), referenced as 87 | - "out-of-sample log model evidence", referenced in 88 | - "/P/ugkv-cvlme" 89 | - Definition "post-odd" ("/D/post-odd"), referenced as 90 | - "posterior odds", referenced in 91 | - "/P/bayes-rule" 92 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 93 | - "prior odds", referenced in 94 | - "/P/bayes-rule" 95 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 96 | - "probability space", referenced in 97 | - "/D/rvar" 98 | - Definition "samp-size" ("/D/samp-size"), referenced as 99 | - "sample size", referenced in 100 | - "/D/dist-samp" 101 | - Definition "samp" ("/D/samp"), referenced as 102 | - "random sample", referenced in 103 | - "/D/dist-samp" 104 | - "sample", referenced in 105 | - "/D/cov-samp" 106 | - "/D/max" 107 | - "/D/mean-samp" 108 | - "/D/med" 109 | - "/D/min" 110 | - "/D/mode" 111 | - "/D/var-samp" 112 | - Definition "stat" ("/D/stat"), referenced as 113 | - "statistic", referenced in 114 | - "/D/dist-samp" 115 | - Definition "std-pool" ("/D/std-pool"), referenced as 116 | - "pooled standard deviation", referenced in 117 | - "/P/ug-ttest2" 118 | - "/P/ugkv-ztest2" 119 | - Definition "suni" ("/D/suni"), referenced as 120 | - "standard uniform distribution", referenced in 121 | - "/P/cdf-itm" 122 | - "/P/cdf-pit" 123 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 124 | - "relationship between the Dirichlet and the gamma distribution", referenced in 125 | - "/P/dir-ep" 126 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 127 | - "Wilks' theorem", referenced in 128 | - "/P/ci-wilks" 129 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 130 | - "moment-generating function of the multivariate normal distribution", referenced in 131 | - "/P/mvn-ltt" 132 | - Proof "mvt-f" ("/P/mvt-f"), referenced as 133 | - "quadratic form of a multivariate t-distributed random variable has an F-distribution", referenced in 134 | - "/P/blr-pcr" 135 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 136 | - "linear transformation theorem for the multivariate t-distribution", referenced in 137 | - "/P/blr-pcr" 138 | - "/P/blr-pp" 139 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 140 | - "probability density function of a multivariate t-distribution", referenced in 141 | - "/P/ng-marg" 142 | - Proof "ncst-t" ("/P/ncst-t"), referenced as 143 | - "the relation between non-central scaled t-distribution and standard t-distribution", referenced in 144 | - "/P/blr-pp" 145 | - Proof "norm-chi2" ("/P/norm-chi2"), referenced as 146 | - "sample variances calculated from independent normal random variables follow a chi-squared distribution", referenced in 147 | - "/P/ug-ttest1" 148 | - "/P/ug-ttest2" 149 | - Proof "norm-t" ("/P/norm-t"), referenced as 150 | - "the ratio of a standard normal random variable and a (normalized) chi-squared random variable follows a t-distribution", referenced in 151 | - "/P/ug-ttest1" 152 | - "/P/ug-ttest2" 153 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 154 | - "probability density function of which", referenced in 155 | - "/P/mblr-prior" 156 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 157 | - "probability density function of the Wishart distribution", referenced in 158 | - "/P/mblr-lme" 159 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2021_11_08.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2021-11-08, 23:05): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "blue" ("/D/blue"), referenced as 6 | - "best linear unbiased estimator", referenced in 7 | - "/P/iglm-blue" 8 | - Definition "ci" ("/D/ci"), referenced as 9 | - "confidence interval", referenced in 10 | - "/P/ci-wilks" 11 | - Definition "con" ("/D/con"), referenced as 12 | - "contrast matrix", referenced in 13 | - "/P/blr-pcr" 14 | - "contrast vector", referenced in 15 | - "/P/blr-pp" 16 | - Definition "cr" ("/D/cr"), referenced as 17 | - "credibility level", referenced in 18 | - "/P/blr-pcr" 19 | - "credibility region", referenced in 20 | - "/P/blr-pcr" 21 | - Definition "data" ("/D/data"), referenced as 22 | - "data", referenced in 23 | - "/P/lme-anc" 24 | - "data set", referenced in 25 | - "/D/cvlme" 26 | - "measured data", referenced in 27 | - "/D/cval" 28 | - "/D/hyp" 29 | - "/D/pval" 30 | - "/D/test" 31 | - "/D/tstat" 32 | - "/P/iglm-blue" 33 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 34 | - "exponential family", referenced in 35 | - "/P/dir-mle" 36 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 37 | - "unimodal probability distribution", referenced in 38 | - "/P/norm-extr" 39 | - Definition "dof" ("/D/dof"), referenced as 40 | - "degree of freedom", referenced in 41 | - "/P/ci-wilks" 42 | - "degrees of freedom", referenced in 43 | - "/D/f" 44 | - "/D/t" 45 | - "/P/blr-pcr" 46 | - "/P/blr-pp" 47 | - "/P/f-pdf" 48 | - "/P/rsq-der" 49 | - "/P/t-pdf" 50 | - "/P/ug-ttest1" 51 | - "/P/ug-ttest2" 52 | - "/P/ug-ttestp" 53 | - Definition "est-unb" ("/D/est-unb"), referenced as 54 | - "bias", referenced in 55 | - "/P/resvar-bias" 56 | - "biased estimator", referenced in 57 | - "/P/resvar-bias" 58 | - "/P/resvar-unb" 59 | - "unbiased estimator", referenced in 60 | - "/P/resvar-unb" 61 | - "unbiased estimators", referenced in 62 | - "/P/slr-olsmean" 63 | - Definition "est" ("/D/est"), referenced as 64 | - "parameter estimates", referenced in 65 | - "/P/snr-rsq" 66 | - Definition "eve-spc" ("/D/eve-spc"), referenced as 67 | - "event space", referenced in 68 | - "/D/prob-ax" 69 | - Definition "iid" ("/D/iid"), referenced as 70 | - "independent and identically distributed", referenced in 71 | - "/P/beta-mome" 72 | - "/P/mvt-f" 73 | - Definition "llr" ("/D/llr"), referenced as 74 | - "log-likelihood ratio", referenced in 75 | - "/P/ci-wilks" 76 | - Definition "lr" ("/D/lr"), referenced as 77 | - "likelihood ratio", referenced in 78 | - "/P/ci-wilks" 79 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 80 | - "sample means", referenced in 81 | - "/P/poissexp-mle" 82 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 83 | - "measurable function", referenced in 84 | - "/D/rvar" 85 | - Definition "mse" ("/D/mse"), referenced as 86 | - "is defined as", referenced in 87 | - "/P/mse-bnv" 88 | - "mean squared error", referenced in 89 | - "/P/mse-bnv" 90 | - Definition "nw" ("/D/nw"), referenced as 91 | - "normal-Wishart distribution", referenced in 92 | - "/P/mblr-post" 93 | - "/P/mblr-prior" 94 | - Definition "odds" ("/D/odds"), referenced as 95 | - "odds ratio", referenced in 96 | - "/P/lbf-der" 97 | - "/P/pmp-bf" 98 | - "/P/pmp-lbf" 99 | - Definition "ooslme" ("/D/ooslme"), referenced as 100 | - "out-of-sample log model evidence", referenced in 101 | - "/P/ugkv-cvlme" 102 | - Definition "post-odd" ("/D/post-odd"), referenced as 103 | - "posterior odds", referenced in 104 | - "/P/bayes-rule" 105 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 106 | - "prior odds", referenced in 107 | - "/P/bayes-rule" 108 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 109 | - "probability measure", referenced in 110 | - "/D/prob-ax" 111 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 112 | - "probability space", referenced in 113 | - "/D/rvar" 114 | - Definition "samp-size" ("/D/samp-size"), referenced as 115 | - "sample size", referenced in 116 | - "/D/dist-samp" 117 | - Definition "samp-spc" ("/D/samp-spc"), referenced as 118 | - "sample space", referenced in 119 | - "/D/prob-ax" 120 | - "/P/prob-comp" 121 | - "/P/prob-exh" 122 | - "/P/prob-tot" 123 | - Definition "samp" ("/D/samp"), referenced as 124 | - "random sample", referenced in 125 | - "/D/dist-samp" 126 | - "sample", referenced in 127 | - "/D/covmat-samp" 128 | - "/D/max" 129 | - "/D/mean-samp" 130 | - "/D/med" 131 | - "/D/min" 132 | - "/D/mode" 133 | - "/D/var-samp" 134 | - "samples", referenced in 135 | - "/D/cov-samp" 136 | - Definition "stat" ("/D/stat"), referenced as 137 | - "statistic", referenced in 138 | - "/D/dist-samp" 139 | - Definition "std-pool" ("/D/std-pool"), referenced as 140 | - "pooled standard deviation", referenced in 141 | - "/P/ug-ttest2" 142 | - "/P/ugkv-ztest2" 143 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 144 | - "relationship between the Dirichlet and the gamma distribution", referenced in 145 | - "/P/dir-ep" 146 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 147 | - "Wilks' theorem", referenced in 148 | - "/P/ci-wilks" 149 | - Proof "matn-mean" ("/P/matn-mean"), referenced as 150 | - "which requires", referenced in 151 | - "/P/iglm-blue" 152 | - Proof "mvn-mean" ("/P/mvn-mean"), referenced as 153 | - "expected value of the multivariate normal distribution", referenced in 154 | - "/P/ng-mean" 155 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 156 | - "moment-generating function of the multivariate normal distribution", referenced in 157 | - "/P/mvn-ltt" 158 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 159 | - "linear transformation theorem for the multivariate t-distribution", referenced in 160 | - "/P/blr-pcr" 161 | - "/P/blr-pp" 162 | - "/P/mvt-f" 163 | - "/P/nst-t" 164 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 165 | - "probability density function of a multivariate t-distribution", referenced in 166 | - "/P/ng-marg" 167 | - "probability density function of the multivariate t-distribution", referenced in 168 | - "/P/nst-t" 169 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 170 | - "is a special case", referenced in 171 | - "/P/nst-t" 172 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 173 | - "probability density function of which", referenced in 174 | - "/P/mblr-prior" 175 | - Proof "slr-sss" ("/P/slr-sss"), referenced as 176 | - "explained and total sum of squares for simple linear regression", referenced in 177 | - "/P/slr-rsq" 178 | - "the residual sum of squares for simple linear regression", referenced in 179 | - "/P/slr-resvar" 180 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 181 | - "Cochran's theorem", referenced in 182 | - "/P/norm-chi2" 183 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 184 | - "probability density function of the Wishart distribution", referenced in 185 | - "/P/mblr-lme" 186 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2021_11_10.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2021-11-10, 10:40): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "blue" ("/D/blue"), referenced as 6 | - "best linear unbiased estimator", referenced in 7 | - "/P/iglm-blue" 8 | - Definition "ci" ("/D/ci"), referenced as 9 | - "confidence interval", referenced in 10 | - "/P/ci-wilks" 11 | - Definition "con" ("/D/con"), referenced as 12 | - "contrast matrix", referenced in 13 | - "/P/blr-pcr" 14 | - "contrast vector", referenced in 15 | - "/P/blr-pp" 16 | - Definition "cr" ("/D/cr"), referenced as 17 | - "credibility level", referenced in 18 | - "/P/blr-pcr" 19 | - "credibility region", referenced in 20 | - "/P/blr-pcr" 21 | - Definition "data" ("/D/data"), referenced as 22 | - "data", referenced in 23 | - "/P/lme-anc" 24 | - "data set", referenced in 25 | - "/D/cvlme" 26 | - "measured data", referenced in 27 | - "/D/cval" 28 | - "/D/hyp" 29 | - "/D/pval" 30 | - "/D/test" 31 | - "/D/tstat" 32 | - "/P/iglm-blue" 33 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 34 | - "exponential family", referenced in 35 | - "/P/dir-mle" 36 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 37 | - "unimodal probability distribution", referenced in 38 | - "/P/norm-extr" 39 | - Definition "dof" ("/D/dof"), referenced as 40 | - "degree of freedom", referenced in 41 | - "/P/ci-wilks" 42 | - "degrees of freedom", referenced in 43 | - "/D/f" 44 | - "/D/t" 45 | - "/P/blr-pcr" 46 | - "/P/blr-pp" 47 | - "/P/f-pdf" 48 | - "/P/rsq-der" 49 | - "/P/t-pdf" 50 | - "/P/ug-ttest1" 51 | - "/P/ug-ttest2" 52 | - "/P/ug-ttestp" 53 | - Definition "est-unb" ("/D/est-unb"), referenced as 54 | - "bias", referenced in 55 | - "/P/resvar-bias" 56 | - "biased estimator", referenced in 57 | - "/P/resvar-bias" 58 | - "/P/resvar-unb" 59 | - "unbiased estimator", referenced in 60 | - "/P/resvar-unb" 61 | - "unbiased estimators", referenced in 62 | - "/P/slr-olsmean" 63 | - Definition "est" ("/D/est"), referenced as 64 | - "parameter estimates", referenced in 65 | - "/P/snr-rsq" 66 | - Definition "eve-spc" ("/D/eve-spc"), referenced as 67 | - "event space", referenced in 68 | - "/D/prob-ax" 69 | - Definition "iid" ("/D/iid"), referenced as 70 | - "independent and identically distributed", referenced in 71 | - "/P/beta-mome" 72 | - "/P/mvt-f" 73 | - Definition "llr" ("/D/llr"), referenced as 74 | - "log-likelihood ratio", referenced in 75 | - "/P/ci-wilks" 76 | - Definition "lr" ("/D/lr"), referenced as 77 | - "likelihood ratio", referenced in 78 | - "/P/ci-wilks" 79 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 80 | - "sample means", referenced in 81 | - "/P/poissexp-mle" 82 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 83 | - "measurable function", referenced in 84 | - "/D/rvar" 85 | - Definition "mse" ("/D/mse"), referenced as 86 | - "is defined as", referenced in 87 | - "/P/mse-bnv" 88 | - "mean squared error", referenced in 89 | - "/P/mse-bnv" 90 | - Definition "nw" ("/D/nw"), referenced as 91 | - "normal-Wishart distribution", referenced in 92 | - "/P/mblr-post" 93 | - "/P/mblr-prior" 94 | - Definition "odds" ("/D/odds"), referenced as 95 | - "odds ratio", referenced in 96 | - "/P/lbf-der" 97 | - "/P/pmp-bf" 98 | - "/P/pmp-lbf" 99 | - Definition "ooslme" ("/D/ooslme"), referenced as 100 | - "out-of-sample log model evidence", referenced in 101 | - "/P/ugkv-cvlme" 102 | - Definition "post-odd" ("/D/post-odd"), referenced as 103 | - "posterior odds", referenced in 104 | - "/P/bayes-rule" 105 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 106 | - "prior odds", referenced in 107 | - "/P/bayes-rule" 108 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 109 | - "probability measure", referenced in 110 | - "/D/prob-ax" 111 | - Definition "prob-spc" ("/D/prob-spc"), referenced as 112 | - "probability space", referenced in 113 | - "/D/rvar" 114 | - Definition "samp-size" ("/D/samp-size"), referenced as 115 | - "sample size", referenced in 116 | - "/D/dist-samp" 117 | - Definition "samp-spc" ("/D/samp-spc"), referenced as 118 | - "sample space", referenced in 119 | - "/D/prob-ax" 120 | - "/P/prob-comp" 121 | - "/P/prob-exh" 122 | - "/P/prob-tot" 123 | - Definition "samp" ("/D/samp"), referenced as 124 | - "random sample", referenced in 125 | - "/D/dist-samp" 126 | - "sample", referenced in 127 | - "/D/covmat-samp" 128 | - "/D/max" 129 | - "/D/mean-samp" 130 | - "/D/med" 131 | - "/D/min" 132 | - "/D/mode" 133 | - "/D/var-samp" 134 | - "samples", referenced in 135 | - "/D/cov-samp" 136 | - Definition "stat" ("/D/stat"), referenced as 137 | - "statistic", referenced in 138 | - "/D/dist-samp" 139 | - Definition "std-pool" ("/D/std-pool"), referenced as 140 | - "pooled standard deviation", referenced in 141 | - "/P/ug-ttest2" 142 | - "/P/ugkv-ztest2" 143 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 144 | - "relationship between the Dirichlet and the gamma distribution", referenced in 145 | - "/P/dir-ep" 146 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 147 | - "Wilks' theorem", referenced in 148 | - "/P/ci-wilks" 149 | - Proof "matn-mean" ("/P/matn-mean"), referenced as 150 | - "which requires", referenced in 151 | - "/P/iglm-blue" 152 | - Proof "mvn-mean" ("/P/mvn-mean"), referenced as 153 | - "expected value of the multivariate normal distribution", referenced in 154 | - "/P/ng-mean" 155 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 156 | - "moment-generating function of the multivariate normal distribution", referenced in 157 | - "/P/mvn-ltt" 158 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 159 | - "linear transformation theorem for the multivariate t-distribution", referenced in 160 | - "/P/blr-pcr" 161 | - "/P/blr-pp" 162 | - "/P/mvt-f" 163 | - "/P/nst-t" 164 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 165 | - "probability density function of a multivariate t-distribution", referenced in 166 | - "/P/ng-marg" 167 | - "probability density function of the multivariate t-distribution", referenced in 168 | - "/P/nst-t" 169 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 170 | - "is a special case", referenced in 171 | - "/P/nst-t" 172 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 173 | - "probability density function of which", referenced in 174 | - "/P/mblr-prior" 175 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 176 | - "Cochran's theorem", referenced in 177 | - "/P/norm-chi2" 178 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 179 | - "probability density function of the Wishart distribution", referenced in 180 | - "/P/mblr-lme" 181 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2022_01_05.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2022-01-05, 11:53): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "blue" ("/D/blue"), referenced as 6 | - "best linear unbiased estimator", referenced in 7 | - "/P/iglm-blue" 8 | - Definition "ci" ("/D/ci"), referenced as 9 | - "confidence interval", referenced in 10 | - "/P/ci-wilks" 11 | - Definition "con" ("/D/con"), referenced as 12 | - "contrast matrix", referenced in 13 | - "/P/blr-pcr" 14 | - "contrast vector", referenced in 15 | - "/P/blr-pp" 16 | - Definition "cr" ("/D/cr"), referenced as 17 | - "credibility level", referenced in 18 | - "/P/blr-pcr" 19 | - "credibility region", referenced in 20 | - "/P/blr-pcr" 21 | - Definition "data" ("/D/data"), referenced as 22 | - "data", referenced in 23 | - "/P/lme-anc" 24 | - "data set", referenced in 25 | - "/D/cvlme" 26 | - "measured data", referenced in 27 | - "/D/cval" 28 | - "/D/hyp" 29 | - "/D/pval" 30 | - "/D/test" 31 | - "/D/tstat" 32 | - "/P/iglm-blue" 33 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 34 | - "exponential family", referenced in 35 | - "/P/dir-mle" 36 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 37 | - "unimodal probability distribution", referenced in 38 | - "/P/norm-extr" 39 | - Definition "dof" ("/D/dof"), referenced as 40 | - "degree of freedom", referenced in 41 | - "/P/ci-wilks" 42 | - "degrees of freedom", referenced in 43 | - "/D/f" 44 | - "/D/t" 45 | - "/P/blr-pcr" 46 | - "/P/blr-pp" 47 | - "/P/f-pdf" 48 | - "/P/rsq-der" 49 | - "/P/t-pdf" 50 | - "/P/ug-ttest1" 51 | - "/P/ug-ttest2" 52 | - "/P/ug-ttestp" 53 | - Definition "est-unb" ("/D/est-unb"), referenced as 54 | - "bias", referenced in 55 | - "/P/resvar-bias" 56 | - "biased estimator", referenced in 57 | - "/P/resvar-bias" 58 | - "/P/resvar-unb" 59 | - "unbiased estimator", referenced in 60 | - "/P/resvar-unb" 61 | - "unbiased estimators", referenced in 62 | - "/P/slr-olsmean" 63 | - Definition "est" ("/D/est"), referenced as 64 | - "parameter estimates", referenced in 65 | - "/P/snr-rsq" 66 | - Definition "iid" ("/D/iid"), referenced as 67 | - "independent and identically distributed", referenced in 68 | - "/P/beta-mome" 69 | - "/P/mvt-f" 70 | - Definition "llr" ("/D/llr"), referenced as 71 | - "log-likelihood ratio", referenced in 72 | - "/P/ci-wilks" 73 | - Definition "lr" ("/D/lr"), referenced as 74 | - "likelihood ratio", referenced in 75 | - "/P/ci-wilks" 76 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 77 | - "conditional expectation", referenced in 78 | - "/P/mean-tot" 79 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 80 | - "sample means", referenced in 81 | - "/P/poissexp-mle" 82 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 83 | - "measurable function", referenced in 84 | - "/D/rvar" 85 | - Definition "mse" ("/D/mse"), referenced as 86 | - "is defined as", referenced in 87 | - "/P/mse-bnv" 88 | - "mean squared error", referenced in 89 | - "/P/mse-bnv" 90 | - Definition "nw" ("/D/nw"), referenced as 91 | - "normal-Wishart distribution", referenced in 92 | - "/P/mblr-post" 93 | - "/P/mblr-prior" 94 | - Definition "odds" ("/D/odds"), referenced as 95 | - "odds ratio", referenced in 96 | - "/P/lbf-der" 97 | - "/P/pmp-bf" 98 | - "/P/pmp-lbf" 99 | - Definition "ooslme" ("/D/ooslme"), referenced as 100 | - "out-of-sample log model evidence", referenced in 101 | - "/P/ugkv-cvlme" 102 | - Definition "post-odd" ("/D/post-odd"), referenced as 103 | - "posterior odds", referenced in 104 | - "/P/bayes-rule" 105 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 106 | - "prior odds", referenced in 107 | - "/P/bayes-rule" 108 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 109 | - "probability measure", referenced in 110 | - "/D/prob-ax" 111 | - "/D/prob-spc" 112 | - Definition "samp-size" ("/D/samp-size"), referenced as 113 | - "sample size", referenced in 114 | - "/D/dist-samp" 115 | - Definition "samp" ("/D/samp"), referenced as 116 | - "random sample", referenced in 117 | - "/D/dist-samp" 118 | - "sample", referenced in 119 | - "/D/corrmat-samp" 120 | - "/D/covmat-samp" 121 | - "/D/max" 122 | - "/D/mean-samp" 123 | - "/D/med" 124 | - "/D/min" 125 | - "/D/mode" 126 | - "/D/var-samp" 127 | - "/P/matn-samp" 128 | - "samples", referenced in 129 | - "/D/corr-samp" 130 | - "/D/cov-samp" 131 | - "/P/corr-z" 132 | - Definition "stat" ("/D/stat"), referenced as 133 | - "statistic", referenced in 134 | - "/D/dist-samp" 135 | - Definition "std-pool" ("/D/std-pool"), referenced as 136 | - "pooled standard deviation", referenced in 137 | - "/P/ug-ttest2" 138 | - "/P/ugkv-ztest2" 139 | - Definition "z" ("/D/z"), referenced as 140 | - "standard scores", referenced in 141 | - "/P/corr-z" 142 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 143 | - "expected value of a logarithmized Dirichlet variate", referenced in 144 | - "/P/dir-kl" 145 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 146 | - "relationship between the Dirichlet and the gamma distribution", referenced in 147 | - "/P/dir-ep" 148 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 149 | - "Wilks' theorem", referenced in 150 | - "/P/ci-wilks" 151 | - Proof "matn-mean" ("/P/matn-mean"), referenced as 152 | - "which requires", referenced in 153 | - "/P/iglm-blue" 154 | - Proof "mvn-mean" ("/P/mvn-mean"), referenced as 155 | - "expected value of the multivariate normal distribution", referenced in 156 | - "/P/ng-mean" 157 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 158 | - "moment-generating function of the multivariate normal distribution", referenced in 159 | - "/P/mvn-ltt" 160 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 161 | - "linear transformation theorem for the multivariate t-distribution", referenced in 162 | - "/P/blr-pcr" 163 | - "/P/blr-pp" 164 | - "/P/mvt-f" 165 | - "/P/nst-t" 166 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 167 | - "probability density function of a multivariate t-distribution", referenced in 168 | - "/P/ng-marg" 169 | - "probability density function of the multivariate t-distribution", referenced in 170 | - "/P/nst-t" 171 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 172 | - "is a special case", referenced in 173 | - "/P/nst-t" 174 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 175 | - "probability density function of which", referenced in 176 | - "/P/mblr-prior" 177 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 178 | - "Cochran's theorem", referenced in 179 | - "/P/norm-chi2" 180 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 181 | - "expected value of a Wishart log-determinant", referenced in 182 | - "/P/wish-kl" 183 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 184 | - "expected value of a Wishart random matrix", referenced in 185 | - "/P/wish-kl" 186 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 187 | - "probability density function of the Wishart distribution", referenced in 188 | - "/P/mblr-lme" 189 | - "/P/wish-kl" 190 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2022_03_28.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2022-03-28, 03:52): 2 | - Definition "bias" ("/D/bias"), referenced as 3 | - "bias", referenced in 4 | - "/P/mse-bnv" 5 | - Definition "blue" ("/D/blue"), referenced as 6 | - "best linear unbiased estimator", referenced in 7 | - "/P/iglm-blue" 8 | - Definition "con" ("/D/con"), referenced as 9 | - "contrast matrix", referenced in 10 | - "/P/blr-pcr" 11 | - "contrast vector", referenced in 12 | - "/P/blr-pp" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/D/gm" 21 | - "/D/mse" 22 | - "/P/lme-anc" 23 | - "data set", referenced in 24 | - "/D/cvlme" 25 | - "measured data", referenced in 26 | - "/D/cval" 27 | - "/D/hyp" 28 | - "/D/pval" 29 | - "/D/test" 30 | - "/D/tstat" 31 | - "/P/iglm-blue" 32 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 33 | - "exponential family", referenced in 34 | - "/P/dir-mle" 35 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 36 | - "unimodal probability distribution", referenced in 37 | - "/P/norm-extr" 38 | - Definition "dof" ("/D/dof"), referenced as 39 | - "degree of freedom", referenced in 40 | - "/P/ci-wilks" 41 | - "degrees of freedom", referenced in 42 | - "/D/f" 43 | - "/D/t" 44 | - "/P/blr-pcr" 45 | - "/P/blr-pp" 46 | - "/P/f-pdf" 47 | - "/P/rsq-der" 48 | - "/P/t-pdf" 49 | - "/P/ug-ttest1" 50 | - "/P/ug-ttest2" 51 | - "/P/ug-ttestp" 52 | - Definition "est-unb" ("/D/est-unb"), referenced as 53 | - "bias", referenced in 54 | - "/P/resvar-bias" 55 | - "biased estimates", referenced in 56 | - "/P/mle-bias" 57 | - "biased estimator", referenced in 58 | - "/P/resvar-bias" 59 | - "/P/resvar-unb" 60 | - "unbiased estimator", referenced in 61 | - "/P/resvar-unb" 62 | - "unbiased estimators", referenced in 63 | - "/P/slr-olsmean" 64 | - Definition "est" ("/D/est"), referenced as 65 | - "estimator", referenced in 66 | - "/D/mse" 67 | - "parameter estimates", referenced in 68 | - "/P/snr-rsq" 69 | - Definition "iid" ("/D/iid"), referenced as 70 | - "independent and identical", referenced in 71 | - "/P/bin-mean" 72 | - "/P/bin-var" 73 | - "/P/bin-varrange" 74 | - "/P/mle-bias" 75 | - "independent and identically distributed", referenced in 76 | - "/P/beta-mome" 77 | - "/P/mvt-f" 78 | - Definition "llr" ("/D/llr"), referenced as 79 | - "log-likelihood ratio", referenced in 80 | - "/P/ci-wilks" 81 | - Definition "lr" ("/D/lr"), referenced as 82 | - "likelihood ratio", referenced in 83 | - "/P/ci-wilks" 84 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 85 | - "conditional expectation", referenced in 86 | - "/P/mean-tot" 87 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 88 | - "sample means", referenced in 89 | - "/P/poissexp-mle" 90 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 91 | - "measurable function", referenced in 92 | - "/D/rvar" 93 | - Definition "mlr-mll" ("/D/mlr-mll"), referenced as 94 | - "log-likelihood function", referenced in 95 | - "/P/blr-dic" 96 | - Definition "nw" ("/D/nw"), referenced as 97 | - "normal-Wishart distribution", referenced in 98 | - "/P/mblr-post" 99 | - "/P/mblr-prior" 100 | - Definition "odds" ("/D/odds"), referenced as 101 | - "odds ratio", referenced in 102 | - "/P/lbf-der" 103 | - "/P/pmp-bf" 104 | - "/P/pmp-lbf" 105 | - Definition "ooslme" ("/D/ooslme"), referenced as 106 | - "out-of-sample log model evidence", referenced in 107 | - "/P/ugkv-cvlme" 108 | - Definition "para" ("/D/para"), referenced as 109 | - "parameter", referenced in 110 | - "/D/ci" 111 | - "/D/mse" 112 | - "parameters", referenced in 113 | - "/D/gm" 114 | - Definition "post-odd" ("/D/post-odd"), referenced as 115 | - "posterior odds", referenced in 116 | - "/P/bayes-rule" 117 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 118 | - "prior odds", referenced in 119 | - "/P/bayes-rule" 120 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 121 | - "probability measure", referenced in 122 | - "/D/prob-ax" 123 | - "/D/prob-spc" 124 | - Definition "samp-size" ("/D/samp-size"), referenced as 125 | - "sample size", referenced in 126 | - "/D/dist-samp" 127 | - Definition "samp" ("/D/samp"), referenced as 128 | - "random sample", referenced in 129 | - "/D/ci" 130 | - "/D/dist-samp" 131 | - "sample", referenced in 132 | - "/D/corrmat-samp" 133 | - "/D/covmat-samp" 134 | - "/D/max" 135 | - "/D/mean-samp" 136 | - "/D/med" 137 | - "/D/min" 138 | - "/D/mode" 139 | - "/D/var-samp" 140 | - "/P/matn-samp" 141 | - "samples", referenced in 142 | - "/D/corr-samp" 143 | - "/D/cov-samp" 144 | - "/D/mse" 145 | - "/P/corr-z" 146 | - Definition "stat" ("/D/stat"), referenced as 147 | - "statistic", referenced in 148 | - "/D/dist-samp" 149 | - Definition "std-pool" ("/D/std-pool"), referenced as 150 | - "pooled standard deviation", referenced in 151 | - "/P/ug-ttest2" 152 | - "/P/ugkv-ztest2" 153 | - Definition "z" ("/D/z"), referenced as 154 | - "standard scores", referenced in 155 | - "/P/corr-z" 156 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 157 | - "expected value of a logarithmized Dirichlet variate", referenced in 158 | - "/P/dir-kl" 159 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 160 | - "relationship between the Dirichlet and the gamma distribution", referenced in 161 | - "/P/dir-ep" 162 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 163 | - "Wilks' theorem", referenced in 164 | - "/P/ci-wilks" 165 | - Proof "lognorm-cdf" ("/P/lognorm-cdf"), referenced as 166 | - "cumulative distribution function of the lognormal distribution", referenced in 167 | - "/P/lognorm-med" 168 | - Proof "matn-mean" ("/P/matn-mean"), referenced as 169 | - "which requires", referenced in 170 | - "/P/iglm-blue" 171 | - Proof "mvn-cov" ("/P/mvn-cov"), referenced as 172 | - "covariance of the multivariate normal distribution", referenced in 173 | - "/P/blr-dic" 174 | - Proof "mvn-mean" ("/P/mvn-mean"), referenced as 175 | - "expected value of the multivariate normal distribution", referenced in 176 | - "/P/ng-mean" 177 | - "mean of the multivariate normal distribution", referenced in 178 | - "/P/blr-dic" 179 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 180 | - "moment-generating function of the multivariate normal distribution", referenced in 181 | - "/P/mvn-ltt" 182 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 183 | - "linear transformation theorem for the multivariate t-distribution", referenced in 184 | - "/P/blr-pcr" 185 | - "/P/blr-pp" 186 | - "/P/mvt-f" 187 | - "/P/nst-t" 188 | - Proof "mvt-pdf" ("/P/mvt-pdf"), referenced as 189 | - "probability density function of a multivariate t-distribution", referenced in 190 | - "/P/ng-marg" 191 | - "probability density function of the multivariate t-distribution", referenced in 192 | - "/P/nst-t" 193 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 194 | - "is a special case", referenced in 195 | - "/P/nst-t" 196 | - Proof "nw-pdf" ("/P/nw-pdf"), referenced as 197 | - "probability density function of which", referenced in 198 | - "/P/mblr-prior" 199 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 200 | - "Cochran's theorem", referenced in 201 | - "/P/norm-chi2" 202 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 203 | - "expected value of a Wishart log-determinant", referenced in 204 | - "/P/wish-kl" 205 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 206 | - "expected value of a Wishart random matrix", referenced in 207 | - "/P/wish-kl" 208 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 209 | - "probability density function of the Wishart distribution", referenced in 210 | - "/P/mblr-lme" 211 | - "/P/wish-kl" 212 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2022_10_22.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2022-10-22, 07:02): 2 | - Definition "betabin-mom" ("/D/betabin-mom"), referenced as 3 | - "raw moments of the beta-binomial distribution", referenced in 4 | - "/P/betabin-mome" 5 | - Definition "bias" ("/D/bias"), referenced as 6 | - "bias", referenced in 7 | - "/P/mse-bnv" 8 | - Definition "blue" ("/D/blue"), referenced as 9 | - "best linear unbiased estimator", referenced in 10 | - "/P/iglm-blue" 11 | - Definition "con" ("/D/con"), referenced as 12 | - "contrast matrix", referenced in 13 | - "/P/blr-pcr" 14 | - "contrast vector", referenced in 15 | - "/P/blr-pp" 16 | - Definition "cr" ("/D/cr"), referenced as 17 | - "credibility level", referenced in 18 | - "/P/blr-pcr" 19 | - "credibility region", referenced in 20 | - "/P/blr-pcr" 21 | - Definition "data" ("/D/data"), referenced as 22 | - "data", referenced in 23 | - "/D/gm" 24 | - "/D/mse" 25 | - "/P/lme-anc" 26 | - "data set", referenced in 27 | - "/D/cvlme" 28 | - "measured data", referenced in 29 | - "/D/cval" 30 | - "/D/hyp" 31 | - "/D/pval" 32 | - "/D/test" 33 | - "/D/tstat" 34 | - "/P/iglm-blue" 35 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 36 | - "exponential family", referenced in 37 | - "/P/dir-mle" 38 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 39 | - "unimodal probability distribution", referenced in 40 | - "/P/norm-extr" 41 | - Definition "dof" ("/D/dof"), referenced as 42 | - "degree of freedom", referenced in 43 | - "/P/ci-wilks" 44 | - "degrees of freedom", referenced in 45 | - "/D/f" 46 | - "/D/t" 47 | - "/P/blr-pcr" 48 | - "/P/blr-pp" 49 | - "/P/f-pdf" 50 | - "/P/rsq-der" 51 | - "/P/t-pdf" 52 | - "/P/ug-ttest1" 53 | - "/P/ug-ttest2" 54 | - "/P/ug-ttestp" 55 | - Definition "est-unb" ("/D/est-unb"), referenced as 56 | - "bias", referenced in 57 | - "/P/resvar-bias" 58 | - "biased estimates", referenced in 59 | - "/P/mle-bias" 60 | - "biased estimator", referenced in 61 | - "/P/resvar-bias" 62 | - "/P/resvar-unb" 63 | - "unbiased estimator", referenced in 64 | - "/P/resvar-unb" 65 | - "unbiased estimators", referenced in 66 | - "/P/slr-olsmean" 67 | - Definition "est" ("/D/est"), referenced as 68 | - "estimator", referenced in 69 | - "/D/mse" 70 | - "parameter estimates", referenced in 71 | - "/P/snr-rsq" 72 | - Definition "iid" ("/D/iid"), referenced as 73 | - "independent and identical", referenced in 74 | - "/P/bin-mean" 75 | - "/P/bin-var" 76 | - "/P/bin-varrange" 77 | - "/P/mle-bias" 78 | - "independent and identically distributed", referenced in 79 | - "/P/beta-mome" 80 | - "/P/mvt-f" 81 | - Definition "llr" ("/D/llr"), referenced as 82 | - "log-likelihood ratio", referenced in 83 | - "/P/ci-wilks" 84 | - Definition "lognorm-cdf" ("/D/lognorm-cdf"), referenced as 85 | - "cumulative distribution function", referenced in 86 | - "/P/lognorm-cdf" 87 | - Definition "lr" ("/D/lr"), referenced as 88 | - "likelihood ratio", referenced in 89 | - "/P/ci-wilks" 90 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 91 | - "conditional expectation", referenced in 92 | - "/P/mean-tot" 93 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 94 | - "sample means", referenced in 95 | - "/P/poissexp-mle" 96 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 97 | - "measurable function", referenced in 98 | - "/D/rvar" 99 | - Definition "mlr-mll" ("/D/mlr-mll"), referenced as 100 | - "log-likelihood function", referenced in 101 | - "/P/blr-dic" 102 | - Definition "odds" ("/D/odds"), referenced as 103 | - "odds ratio", referenced in 104 | - "/P/lbf-der" 105 | - "/P/pmp-bf" 106 | - "/P/pmp-lbf" 107 | - Definition "ooslme" ("/D/ooslme"), referenced as 108 | - "out-of-sample log model evidence", referenced in 109 | - "/P/ugkv-cvlme" 110 | - Definition "para" ("/D/para"), referenced as 111 | - "parameter", referenced in 112 | - "/D/ci" 113 | - "/D/mse" 114 | - "parameters", referenced in 115 | - "/D/gm" 116 | - Definition "post-odd" ("/D/post-odd"), referenced as 117 | - "posterior odds", referenced in 118 | - "/P/bayes-rule" 119 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 120 | - "prior odds", referenced in 121 | - "/P/bayes-rule" 122 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 123 | - "probability measure", referenced in 124 | - "/D/prob-ax" 125 | - "/D/prob-spc" 126 | - Definition "samp-size" ("/D/samp-size"), referenced as 127 | - "sample size", referenced in 128 | - "/D/dist-samp" 129 | - Definition "samp" ("/D/samp"), referenced as 130 | - "random sample", referenced in 131 | - "/D/ci" 132 | - "/D/dist-samp" 133 | - "sample", referenced in 134 | - "/D/corrmat-samp" 135 | - "/D/covmat-samp" 136 | - "/D/max" 137 | - "/D/mean-samp" 138 | - "/D/med" 139 | - "/D/min" 140 | - "/D/mode" 141 | - "/D/var-samp" 142 | - "/P/matn-samp" 143 | - "/P/ng-samp" 144 | - "samples", referenced in 145 | - "/D/corr-samp" 146 | - "/D/cov-samp" 147 | - "/D/mse" 148 | - "/P/corr-z" 149 | - Definition "stat" ("/D/stat"), referenced as 150 | - "statistic", referenced in 151 | - "/D/dist-samp" 152 | - Definition "std-pool" ("/D/std-pool"), referenced as 153 | - "pooled standard deviation", referenced in 154 | - "/P/ug-ttest2" 155 | - "/P/ugkv-ztest2" 156 | - Definition "z" ("/D/z"), referenced as 157 | - "standard scores", referenced in 158 | - "/P/corr-z" 159 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 160 | - "expected value of a logarithmized Dirichlet variate", referenced in 161 | - "/P/dir-kl" 162 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 163 | - "relationship between the Dirichlet and the gamma distribution", referenced in 164 | - "/P/dir-ep" 165 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 166 | - "Wilks' theorem", referenced in 167 | - "/P/ci-wilks" 168 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 169 | - "moment-generating function of the multivariate normal distribution", referenced in 170 | - "/P/mvn-ltt" 171 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 172 | - "covariance of the multivariate t-distribution", referenced in 173 | - "/P/ng-cov" 174 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 175 | - "linear transformation theorem for the multivariate t-distribution", referenced in 176 | - "/P/blr-pcr" 177 | - "/P/blr-pp" 178 | - "/P/mvt-f" 179 | - "/P/nst-t" 180 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 181 | - "is a special case", referenced in 182 | - "/P/nst-t" 183 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 184 | - "Cochran's theorem", referenced in 185 | - "/P/norm-chi2" 186 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 187 | - "expected value of a Wishart log-determinant", referenced in 188 | - "/P/wish-kl" 189 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 190 | - "expected value of a Wishart random matrix", referenced in 191 | - "/P/wish-kl" 192 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 193 | - "is described by the probability density function", referenced in 194 | - "/P/gam-wish" 195 | - "probability density function of the Wishart distribution", referenced in 196 | - "/P/mblr-lme" 197 | - "/P/nw-pdf" 198 | - "/P/wish-kl" 199 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2023_08_18.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2023-08-18, 16:20): 2 | - Definition "anova1-f" ("/D/anova1-f"), referenced as 3 | - "null hypothesis for the main effect", referenced in 4 | - "/P/anova1-repara" 5 | - Definition "anovan" ("/D/anovan"), referenced as 6 | - "more", referenced in 7 | - "/D/iass" 8 | - "multiple", referenced in 9 | - "/D/trss" 10 | - Definition "betabin-mom" ("/D/betabin-mom"), referenced as 11 | - "raw moments of the beta-binomial distribution", referenced in 12 | - "/P/betabin-mome" 13 | - Definition "bias" ("/D/bias"), referenced as 14 | - "bias", referenced in 15 | - "/P/mse-bnv" 16 | - Definition "blue" ("/D/blue"), referenced as 17 | - "best linear unbiased estimator", referenced in 18 | - "/P/iglm-blue" 19 | - Definition "con" ("/D/con"), referenced as 20 | - "contrast matrix", referenced in 21 | - "/P/blr-pcr" 22 | - "contrast vector", referenced in 23 | - "/P/blr-pp" 24 | - Definition "cr" ("/D/cr"), referenced as 25 | - "credibility level", referenced in 26 | - "/P/blr-pcr" 27 | - "credibility region", referenced in 28 | - "/P/blr-pcr" 29 | - Definition "data" ("/D/data"), referenced as 30 | - "data", referenced in 31 | - "/D/gm" 32 | - "/D/mse" 33 | - "/P/lme-anc" 34 | - "data set", referenced in 35 | - "/D/cvlme" 36 | - "measured data", referenced in 37 | - "/D/cval" 38 | - "/D/hyp" 39 | - "/D/pval" 40 | - "/D/test" 41 | - "/D/tstat" 42 | - "/P/iglm-blue" 43 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 44 | - "exponential family", referenced in 45 | - "/P/dir-mle" 46 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 47 | - "unimodal probability distribution", referenced in 48 | - "/P/norm-extr" 49 | - Definition "dof" ("/D/dof"), referenced as 50 | - "degree of freedom", referenced in 51 | - "/P/ci-wilks" 52 | - "degrees of freedom", referenced in 53 | - "/D/f" 54 | - "/D/t" 55 | - "/P/anova1-repara" 56 | - "/P/blr-pcr" 57 | - "/P/blr-pp" 58 | - "/P/f-pdf" 59 | - "/P/mlr-rssdist" 60 | - "/P/mvn-chi2" 61 | - "/P/rsq-der" 62 | - "/P/t-pdf" 63 | - "/P/ug-ttest1" 64 | - "/P/ug-ttest2" 65 | - "/P/ug-ttestp" 66 | - Definition "est-unb" ("/D/est-unb"), referenced as 67 | - "bias", referenced in 68 | - "/P/resvar-bias" 69 | - "biased estimates", referenced in 70 | - "/P/mle-bias" 71 | - "biased estimator", referenced in 72 | - "/P/resvar-bias" 73 | - "/P/resvar-biasp" 74 | - "/P/resvar-unb" 75 | - "unbiased estimator", referenced in 76 | - "/P/resvar-unb" 77 | - "unbiased estimators", referenced in 78 | - "/P/slr-olsmean" 79 | - Definition "est" ("/D/est"), referenced as 80 | - "estimator", referenced in 81 | - "/D/mse" 82 | - "parameter estimates", referenced in 83 | - "/P/snr-rsq" 84 | - Definition "iid" ("/D/iid"), referenced as 85 | - "independent and identical", referenced in 86 | - "/P/bin-mean" 87 | - "/P/bin-var" 88 | - "/P/bin-varrange" 89 | - "/P/mle-bias" 90 | - "independent and identically distributed", referenced in 91 | - "/D/anova1" 92 | - "/P/beta-mome" 93 | - "/P/mvt-f" 94 | - Definition "llr" ("/D/llr"), referenced as 95 | - "log-likelihood ratio", referenced in 96 | - "/P/ci-wilks" 97 | - Definition "lognorm-cdf" ("/D/lognorm-cdf"), referenced as 98 | - "cumulative distribution function", referenced in 99 | - "/P/lognorm-cdf" 100 | - Definition "lr" ("/D/lr"), referenced as 101 | - "likelihood ratio", referenced in 102 | - "/P/ci-wilks" 103 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 104 | - "conditional expectation", referenced in 105 | - "/P/mean-tot" 106 | - Definition "mean-sample" ("/D/mean-sample"), referenced as 107 | - "sample means", referenced in 108 | - "/P/poissexp-mle" 109 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 110 | - "measurable function", referenced in 111 | - "/D/rvar" 112 | - Definition "mlr-mll" ("/D/mlr-mll"), referenced as 113 | - "log-likelihood function", referenced in 114 | - "/P/blr-dic" 115 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 116 | - "non-central chi-squared distribution", referenced in 117 | - "/P/mlr-rssdist" 118 | - Definition "odds" ("/D/odds"), referenced as 119 | - "odds ratio", referenced in 120 | - "/P/lbf-der" 121 | - "/P/pmp-bf" 122 | - "/P/pmp-lbf" 123 | - Definition "ooslme" ("/D/ooslme"), referenced as 124 | - "out-of-sample log model evidence", referenced in 125 | - "/P/ugkv-cvlme" 126 | - Definition "para" ("/D/para"), referenced as 127 | - "parameter", referenced in 128 | - "/D/ci" 129 | - "/D/mse" 130 | - "parameters", referenced in 131 | - "/D/gm" 132 | - Definition "post-odd" ("/D/post-odd"), referenced as 133 | - "posterior odds", referenced in 134 | - "/P/bayes-rule" 135 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 136 | - "prior odds", referenced in 137 | - "/P/bayes-rule" 138 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 139 | - "probability measure", referenced in 140 | - "/D/prob-ax" 141 | - "/D/prob-spc" 142 | - Definition "rfm" ("/D/rfm"), referenced as 143 | - "residual-forming matrix", referenced in 144 | - "/P/mlr-olsdist" 145 | - Definition "samp-size" ("/D/samp-size"), referenced as 146 | - "sample size", referenced in 147 | - "/D/dist-samp" 148 | - Definition "samp" ("/D/samp"), referenced as 149 | - "random sample", referenced in 150 | - "/D/ci" 151 | - "/D/dist-samp" 152 | - "sample", referenced in 153 | - "/D/corrmat-samp" 154 | - "/D/covmat-samp" 155 | - "/D/max" 156 | - "/D/mean-samp" 157 | - "/D/med" 158 | - "/D/min" 159 | - "/D/mode" 160 | - "/D/var-samp" 161 | - "/P/matn-samp" 162 | - "/P/ng-samp" 163 | - "samples", referenced in 164 | - "/D/corr-samp" 165 | - "/D/cov-samp" 166 | - "/D/mse" 167 | - "/P/corr-z" 168 | - Definition "stat" ("/D/stat"), referenced as 169 | - "statistic", referenced in 170 | - "/D/dist-samp" 171 | - Definition "std-pool" ("/D/std-pool"), referenced as 172 | - "pooled standard deviation", referenced in 173 | - "/P/ug-ttest2" 174 | - "/P/ugkv-ztest2" 175 | - Definition "z" ("/D/z"), referenced as 176 | - "standard scores", referenced in 177 | - "/P/corr-z" 178 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 179 | - "expected value of a logarithmized Dirichlet variate", referenced in 180 | - "/P/dir-kl" 181 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 182 | - "relationship between the Dirichlet and the gamma distribution", referenced in 183 | - "/P/dir-ep" 184 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 185 | - "Wilks' theorem", referenced in 186 | - "/P/ci-wilks" 187 | - Proof "mle" ("/P/mle"), referenced as 188 | - "maximum likelihood estimator", referenced in 189 | - "/P/mult-mle" 190 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 191 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 192 | - "/P/mult-mle" 193 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 194 | - "Cochran's theorem for multivariate normal variables", referenced in 195 | - "/P/mlr-rssdist" 196 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 197 | - "moment-generating function of the multivariate normal distribution", referenced in 198 | - "/P/mvn-ltt" 199 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 200 | - "covariance of the multivariate t-distribution", referenced in 201 | - "/P/ng-cov" 202 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 203 | - "linear transformation theorem for the multivariate t-distribution", referenced in 204 | - "/P/blr-pcr" 205 | - "/P/blr-pp" 206 | - "/P/mvt-f" 207 | - "/P/nst-t" 208 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 209 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 210 | - "/P/mlr-rssdist" 211 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 212 | - "is a special case", referenced in 213 | - "/P/nst-t" 214 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 215 | - "Cochran's theorem", referenced in 216 | - "/P/anova1-f" 217 | - "/P/anova2-cochran" 218 | - "/P/norm-chi2" 219 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 220 | - "expected value of a Wishart log-determinant", referenced in 221 | - "/P/wish-kl" 222 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 223 | - "expected value of a Wishart random matrix", referenced in 224 | - "/P/wish-kl" 225 | - "expected value of the Wishart distribution", referenced in 226 | - "/P/nw-mean" 227 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 228 | - "is described by the probability density function", referenced in 229 | - "/P/gam-wish" 230 | - "probability density function of the Wishart distribution", referenced in 231 | - "/P/mblr-lme" 232 | - "/P/nw-pdf" 233 | - "/P/wish-kl" 234 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2023_08_25.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2023-08-25, 13:01): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blue" ("/D/blue"), referenced as 11 | - "best linear unbiased estimator", referenced in 12 | - "/P/iglm-blue" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/D/gm" 21 | - "/D/mse" 22 | - "/P/lme-anc" 23 | - "data set", referenced in 24 | - "/D/cvlme" 25 | - "measured data", referenced in 26 | - "/D/cval" 27 | - "/D/hyp" 28 | - "/D/pval" 29 | - "/D/test" 30 | - "/D/tstat" 31 | - "/P/iglm-blue" 32 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 33 | - "exponential family", referenced in 34 | - "/P/dir-mle" 35 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 36 | - "unimodal probability distribution", referenced in 37 | - "/P/norm-extr" 38 | - Definition "dof" ("/D/dof"), referenced as 39 | - "degree of freedom", referenced in 40 | - "/P/ci-wilks" 41 | - "degrees of freedom", referenced in 42 | - "/D/f" 43 | - "/D/t" 44 | - "/P/anova1-repara" 45 | - "/P/blr-pcr" 46 | - "/P/blr-pp" 47 | - "/P/f-pdf" 48 | - "/P/mlr-rssdist" 49 | - "/P/mvn-chi2" 50 | - "/P/rsq-der" 51 | - "/P/t-pdf" 52 | - "/P/ug-ttest1" 53 | - "/P/ug-ttest2" 54 | - "/P/ug-ttestp" 55 | - Definition "est-unb" ("/D/est-unb"), referenced as 56 | - "bias", referenced in 57 | - "/P/resvar-bias" 58 | - "biased estimates", referenced in 59 | - "/P/mle-bias" 60 | - "biased estimator", referenced in 61 | - "/P/resvar-bias" 62 | - "/P/resvar-biasp" 63 | - "/P/resvar-unb" 64 | - "unbiased estimator", referenced in 65 | - "/P/resvar-unb" 66 | - "unbiased estimators", referenced in 67 | - "/P/slr-olsmean" 68 | - Definition "est" ("/D/est"), referenced as 69 | - "estimator", referenced in 70 | - "/D/mse" 71 | - "parameter estimates", referenced in 72 | - "/P/snr-rsq" 73 | - Definition "iid" ("/D/iid"), referenced as 74 | - "independent and identical", referenced in 75 | - "/P/bin-mean" 76 | - "/P/bin-var" 77 | - "/P/bin-varrange" 78 | - "/P/mle-bias" 79 | - "independent and identically distributed", referenced in 80 | - "/D/anova1" 81 | - "/P/beta-mome" 82 | - Definition "llr" ("/D/llr"), referenced as 83 | - "log-likelihood ratio", referenced in 84 | - "/P/ci-wilks" 85 | - Definition "lr" ("/D/lr"), referenced as 86 | - "likelihood ratio", referenced in 87 | - "/P/ci-wilks" 88 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 89 | - "conditional expectation", referenced in 90 | - "/P/mean-tot" 91 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 92 | - "measurable function", referenced in 93 | - "/D/rvar" 94 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 95 | - "non-central chi-squared distribution", referenced in 96 | - "/P/mlr-rssdist" 97 | - Definition "odds" ("/D/odds"), referenced as 98 | - "odds ratio", referenced in 99 | - "/P/lbf-der" 100 | - "/P/pmp-bf" 101 | - "/P/pmp-lbf" 102 | - Definition "ooslme" ("/D/ooslme"), referenced as 103 | - "out-of-sample log model evidence", referenced in 104 | - "/P/ugkv-cvlme" 105 | - Definition "para" ("/D/para"), referenced as 106 | - "parameter", referenced in 107 | - "/D/ci" 108 | - "/D/mse" 109 | - "parameters", referenced in 110 | - "/D/gm" 111 | - Definition "post-odd" ("/D/post-odd"), referenced as 112 | - "posterior odds", referenced in 113 | - "/P/bayes-rule" 114 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 115 | - "prior odds", referenced in 116 | - "/P/bayes-rule" 117 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 118 | - "probability measure", referenced in 119 | - "/D/prob-ax" 120 | - "/D/prob-spc" 121 | - Definition "samp-size" ("/D/samp-size"), referenced as 122 | - "sample size", referenced in 123 | - "/D/dist-samp" 124 | - Definition "samp" ("/D/samp"), referenced as 125 | - "random sample", referenced in 126 | - "/D/ci" 127 | - "/D/dist-samp" 128 | - "sample", referenced in 129 | - "/D/corrmat-samp" 130 | - "/D/covmat-samp" 131 | - "/D/max" 132 | - "/D/mean-samp" 133 | - "/D/med" 134 | - "/D/min" 135 | - "/D/mode" 136 | - "/D/var-samp" 137 | - "/P/matn-samp" 138 | - "/P/ng-samp" 139 | - "samples", referenced in 140 | - "/D/corr-samp" 141 | - "/D/cov-samp" 142 | - "/D/mse" 143 | - "/P/corr-z" 144 | - Definition "stat" ("/D/stat"), referenced as 145 | - "statistic", referenced in 146 | - "/D/dist-samp" 147 | - Definition "std-pool" ("/D/std-pool"), referenced as 148 | - "pooled standard deviation", referenced in 149 | - "/P/ug-ttest2" 150 | - "/P/ugkv-ztest2" 151 | - Definition "z" ("/D/z"), referenced as 152 | - "standard scores", referenced in 153 | - "/P/corr-z" 154 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 155 | - "raw moments of the beta-binomial distribution", referenced in 156 | - "/P/betabin-mome" 157 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 158 | - "expected value of a logarithmized Dirichlet variate", referenced in 159 | - "/P/dir-kl" 160 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 161 | - "relationship between the Dirichlet and the gamma distribution", referenced in 162 | - "/P/dir-ep" 163 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 164 | - "Wilks' theorem", referenced in 165 | - "/P/ci-wilks" 166 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 167 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 168 | - "/P/mult-mle" 169 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 170 | - "Cochran's theorem for multivariate normal variables", referenced in 171 | - "/P/mlr-rssdist" 172 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 173 | - "moment-generating function of the multivariate normal distribution", referenced in 174 | - "/P/mvn-ltt" 175 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 176 | - "covariance of the multivariate t-distribution", referenced in 177 | - "/P/ng-cov" 178 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 179 | - "linear transformation theorem for the multivariate t-distribution", referenced in 180 | - "/P/blr-pcr" 181 | - "/P/blr-pp" 182 | - "/P/mvt-f" 183 | - "/P/nst-t" 184 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 185 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 186 | - "/P/mlr-rssdist" 187 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 188 | - "is a special case", referenced in 189 | - "/P/nst-t" 190 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 191 | - "Cochran's theorem", referenced in 192 | - "/P/anova1-f" 193 | - "/P/anova2-cochran" 194 | - "/P/norm-chi2" 195 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 196 | - "expected value of a Wishart log-determinant", referenced in 197 | - "/P/wish-kl" 198 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 199 | - "expected value of a Wishart random matrix", referenced in 200 | - "/P/wish-kl" 201 | - "expected value of the Wishart distribution", referenced in 202 | - "/P/nw-mean" 203 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 204 | - "is described by the probability density function", referenced in 205 | - "/P/gam-wish" 206 | - "probability density function of the Wishart distribution", referenced in 207 | - "/P/mblr-lme" 208 | - "/P/nw-pdf" 209 | - "/P/wish-kl" 210 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2024_01_12.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2024-01-12, 11:35): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blue" ("/D/blue"), referenced as 11 | - "best linear unbiased estimator", referenced in 12 | - "/P/iglm-blue" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/D/gm" 21 | - "/D/mse" 22 | - "/P/lme-anc" 23 | - "data set", referenced in 24 | - "/D/cvlme" 25 | - "measured data", referenced in 26 | - "/D/cval" 27 | - "/D/hyp" 28 | - "/D/pval" 29 | - "/D/test" 30 | - "/D/tstat" 31 | - "/P/iglm-blue" 32 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 33 | - "exponential family", referenced in 34 | - "/P/dir-mle" 35 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 36 | - "unimodal probability distribution", referenced in 37 | - "/P/norm-extr" 38 | - Definition "dof" ("/D/dof"), referenced as 39 | - "degree of freedom", referenced in 40 | - "/P/ci-wilks" 41 | - "degrees of freedom", referenced in 42 | - "/D/f" 43 | - "/D/t" 44 | - "/P/anova1-repara" 45 | - "/P/blr-pcr" 46 | - "/P/blr-pp" 47 | - "/P/f-pdf" 48 | - "/P/mlr-f" 49 | - "/P/mlr-rssdist" 50 | - "/P/mlr-t" 51 | - "/P/mvn-chi2" 52 | - "/P/rsq-der" 53 | - "/P/t-pdf" 54 | - "/P/ug-ttest1" 55 | - "/P/ug-ttest2" 56 | - "/P/ug-ttestp" 57 | - Definition "est-unb" ("/D/est-unb"), referenced as 58 | - "bias", referenced in 59 | - "/P/resvar-bias" 60 | - "biased estimates", referenced in 61 | - "/P/mle-bias" 62 | - "biased estimator", referenced in 63 | - "/P/resvar-bias" 64 | - "/P/resvar-biasp" 65 | - "/P/resvar-unb" 66 | - "unbiased estimator", referenced in 67 | - "/P/resvar-unb" 68 | - "unbiased estimators", referenced in 69 | - "/P/slr-olsmean" 70 | - Definition "est" ("/D/est"), referenced as 71 | - "estimator", referenced in 72 | - "/D/mse" 73 | - "parameter estimates", referenced in 74 | - "/P/snr-rsq" 75 | - Definition "iid" ("/D/iid"), referenced as 76 | - "independent and identical", referenced in 77 | - "/P/bin-mean" 78 | - "/P/bin-var" 79 | - "/P/bin-varrange" 80 | - "/P/mle-bias" 81 | - "independent and identically distributed", referenced in 82 | - "/D/anova1" 83 | - "/P/beta-mome" 84 | - "/P/exg-mome" 85 | - "/P/wald-mome" 86 | - Definition "llr" ("/D/llr"), referenced as 87 | - "log-likelihood ratio", referenced in 88 | - "/P/ci-wilks" 89 | - Definition "lr" ("/D/lr"), referenced as 90 | - "likelihood ratio", referenced in 91 | - "/P/ci-wilks" 92 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 93 | - "conditional expectation", referenced in 94 | - "/P/mean-tot" 95 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 96 | - "measurable function", referenced in 97 | - "/D/rvar" 98 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 99 | - "non-central chi-squared distribution", referenced in 100 | - "/P/mlr-rssdist" 101 | - Definition "odds" ("/D/odds"), referenced as 102 | - "odds ratio", referenced in 103 | - "/P/lbf-der" 104 | - "/P/pmp-bf" 105 | - "/P/pmp-lbf" 106 | - Definition "ooslme" ("/D/ooslme"), referenced as 107 | - "out-of-sample log model evidence", referenced in 108 | - "/P/ugkv-cvlme" 109 | - Definition "para" ("/D/para"), referenced as 110 | - "parameter", referenced in 111 | - "/D/ci" 112 | - "/D/mse" 113 | - "parameters", referenced in 114 | - "/D/gm" 115 | - Definition "post-odd" ("/D/post-odd"), referenced as 116 | - "posterior odds", referenced in 117 | - "/P/bayes-rule" 118 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 119 | - "prior odds", referenced in 120 | - "/P/bayes-rule" 121 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 122 | - "probability measure", referenced in 123 | - "/D/prob-ax" 124 | - "/D/prob-spc" 125 | - Definition "samp-size" ("/D/samp-size"), referenced as 126 | - "sample size", referenced in 127 | - "/D/dist-samp" 128 | - Definition "samp" ("/D/samp"), referenced as 129 | - "random sample", referenced in 130 | - "/D/ci" 131 | - "/D/dist-samp" 132 | - "sample", referenced in 133 | - "/D/corrmat-samp" 134 | - "/D/covmat-samp" 135 | - "/D/max" 136 | - "/D/mean-samp" 137 | - "/D/med" 138 | - "/D/min" 139 | - "/D/mode" 140 | - "/D/skew-samp" 141 | - "/D/var-samp" 142 | - "/P/matn-samp" 143 | - "/P/ng-samp" 144 | - "samples", referenced in 145 | - "/D/corr-samp" 146 | - "/D/cov-samp" 147 | - "/D/mse" 148 | - "/P/corr-z" 149 | - Definition "stat" ("/D/stat"), referenced as 150 | - "statistic", referenced in 151 | - "/D/dist-samp" 152 | - Definition "std-pool" ("/D/std-pool"), referenced as 153 | - "pooled standard deviation", referenced in 154 | - "/P/ug-ttest2" 155 | - "/P/ugkv-ztest2" 156 | - Definition "z" ("/D/z"), referenced as 157 | - "standard scores", referenced in 158 | - "/P/corr-z" 159 | - Proof "beta-mode" ("/P/beta-mode"), referenced as 160 | - "mode of the beta distribution", referenced in 161 | - "/P/bin-map" 162 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 163 | - "raw moments of the beta-binomial distribution", referenced in 164 | - "/P/betabin-mome" 165 | - Proof "bin-cdf" ("/P/bin-cdf"), referenced as 166 | - "cumulative distribution function of a binomial distribution", referenced in 167 | - "/P/bin-test" 168 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 169 | - "expected value of a logarithmized Dirichlet variate", referenced in 170 | - "/P/dir-kl" 171 | - Proof "dir-mode" ("/P/dir-mode"), referenced as 172 | - "mode of the Dirichlet distribution", referenced in 173 | - "/P/mult-map" 174 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 175 | - "relationship between the Dirichlet and the gamma distribution", referenced in 176 | - "/P/dir-ep" 177 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 178 | - "Wilks' theorem", referenced in 179 | - "/P/ci-wilks" 180 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 181 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 182 | - "/P/mult-mle" 183 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 184 | - "Cochran's theorem for multivariate normal variables", referenced in 185 | - "/P/mlr-rssdist" 186 | - Proof "mvn-mgf" ("/P/mvn-mgf"), referenced as 187 | - "moment-generating function of the multivariate normal distribution", referenced in 188 | - "/P/mvn-ltt" 189 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 190 | - "covariance of the multivariate t-distribution", referenced in 191 | - "/P/ng-cov" 192 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 193 | - "linear transformation theorem for the multivariate t-distribution", referenced in 194 | - "/P/blr-pcr" 195 | - "/P/blr-pp" 196 | - "/P/mvt-f" 197 | - "/P/nst-t" 198 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 199 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 200 | - "/P/mlr-rssdist" 201 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 202 | - "is a special case", referenced in 203 | - "/P/nst-t" 204 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 205 | - "Cochran's theorem", referenced in 206 | - "/P/anova1-f" 207 | - "/P/anova2-cochran" 208 | - "/P/norm-chi2" 209 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 210 | - "expected value of a Wishart log-determinant", referenced in 211 | - "/P/wish-kl" 212 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 213 | - "expected value of a Wishart random matrix", referenced in 214 | - "/P/wish-kl" 215 | - "expected value of the Wishart distribution", referenced in 216 | - "/P/nw-mean" 217 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 218 | - "is described by the probability density function", referenced in 219 | - "/P/gam-wish" 220 | - "probability density function of the Wishart distribution", referenced in 221 | - "/P/mblr-lme" 222 | - "/P/nw-pdf" 223 | - "/P/wish-kl" 224 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2024_08_08.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2024-08-08, 12:14): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blr-prior" ("/D/blr-prior"), referenced as 11 | - "noise precision", referenced in 12 | - "/P/blr-postind" 13 | - "noise precisions", referenced in 14 | - "/P/blr-lbf" 15 | - Definition "blue" ("/D/blue"), referenced as 16 | - "best linear unbiased estimator", referenced in 17 | - "/P/iglm-blue" 18 | - Definition "cr" ("/D/cr"), referenced as 19 | - "credibility level", referenced in 20 | - "/P/blr-pcr" 21 | - "credibility region", referenced in 22 | - "/P/blr-pcr" 23 | - Definition "data" ("/D/data"), referenced as 24 | - "data", referenced in 25 | - "/D/gm" 26 | - "/D/mse" 27 | - "/P/lme-anc" 28 | - "data matrix", referenced in 29 | - "/P/glm-llr" 30 | - "data set", referenced in 31 | - "/D/cvlme" 32 | - "data vector", referenced in 33 | - "/P/mlr-llr" 34 | - "measured data", referenced in 35 | - "/D/cval" 36 | - "/D/hyp" 37 | - "/D/pval" 38 | - "/D/test" 39 | - "/D/tstat" 40 | - "/P/iglm-blue" 41 | - "measured univariate signal", referenced in 42 | - "/P/blr-lbf" 43 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 44 | - "exponential family", referenced in 45 | - "/P/dir-mle" 46 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 47 | - "unimodal probability distribution", referenced in 48 | - "/P/norm-extr" 49 | - Definition "dof" ("/D/dof"), referenced as 50 | - "degree of freedom", referenced in 51 | - "/P/ci-wilks" 52 | - "degrees of freedom", referenced in 53 | - "/D/f" 54 | - "/D/fstat" 55 | - "/D/t" 56 | - "/P/anova1-repara" 57 | - "/P/blr-pcr" 58 | - "/P/blr-pp" 59 | - "/P/f-pdf" 60 | - "/P/mlr-f" 61 | - "/P/mlr-rssdist" 62 | - "/P/mlr-t" 63 | - "/P/mvn-chi2" 64 | - "/P/rsq-der" 65 | - "/P/rsq-test" 66 | - "/P/t-pdf" 67 | - "/P/ug-fev" 68 | - "/P/ug-ttest1" 69 | - "/P/ug-ttest2" 70 | - "/P/ug-ttestp" 71 | - Definition "est-unb" ("/D/est-unb"), referenced as 72 | - "bias", referenced in 73 | - "/P/resvar-bias" 74 | - "biased estimates", referenced in 75 | - "/P/mle-bias" 76 | - "biased estimator", referenced in 77 | - "/P/resvar-bias" 78 | - "/P/resvar-biasp" 79 | - "/P/resvar-unb" 80 | - "/P/resvar-unbp" 81 | - "unbiased estimator", referenced in 82 | - "/P/resvar-unb" 83 | - "/P/resvar-unbp" 84 | - "unbiased estimators", referenced in 85 | - "/P/slr-olsmean" 86 | - Definition "est" ("/D/est"), referenced as 87 | - "estimator", referenced in 88 | - "/D/mse" 89 | - "parameter estimates", referenced in 90 | - "/P/snr-rsq" 91 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 92 | - "conditional expectation", referenced in 93 | - "/P/mean-tot" 94 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 95 | - "measurable function", referenced in 96 | - "/D/rvar" 97 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 98 | - "non-central chi-squared distribution", referenced in 99 | - "/P/mlr-rssdist" 100 | - Definition "odds" ("/D/odds"), referenced as 101 | - "odds ratio", referenced in 102 | - "/P/lbf-der" 103 | - "/P/pmp-bf" 104 | - "/P/pmp-lbf" 105 | - Definition "ooslme" ("/D/ooslme"), referenced as 106 | - "out-of-sample log model evidence", referenced in 107 | - "/P/ugkv-cvlme" 108 | - Definition "para" ("/D/para"), referenced as 109 | - "parameter", referenced in 110 | - "/D/ci" 111 | - "/D/mse" 112 | - "parameters", referenced in 113 | - "/D/gm" 114 | - Definition "post-odd" ("/D/post-odd"), referenced as 115 | - "posterior odds", referenced in 116 | - "/P/bayes-rule" 117 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 118 | - "prior odds", referenced in 119 | - "/P/bayes-rule" 120 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 121 | - "probability measure", referenced in 122 | - "/D/prob-ax" 123 | - "/D/prob-spc" 124 | - Definition "samp-size" ("/D/samp-size"), referenced as 125 | - "sample size", referenced in 126 | - "/D/dist-samp" 127 | - Definition "samp" ("/D/samp"), referenced as 128 | - "random sample", referenced in 129 | - "/D/ci" 130 | - "/D/dist-samp" 131 | - "sample", referenced in 132 | - "/D/corrmat-samp" 133 | - "/D/covmat-samp" 134 | - "/D/max" 135 | - "/D/mean-samp" 136 | - "/D/med" 137 | - "/D/min" 138 | - "/D/mode" 139 | - "/D/skew-samp" 140 | - "/D/var-samp" 141 | - "/P/matn-samp" 142 | - "/P/ng-samp" 143 | - "samples", referenced in 144 | - "/D/corr-samp" 145 | - "/D/cov-samp" 146 | - "/D/mse" 147 | - "/P/corr-z" 148 | - Definition "sf" ("/D/sf"), referenced as 149 | - "score", referenced in 150 | - "/P/lpsr-spsr" 151 | - Definition "stat" ("/D/stat"), referenced as 152 | - "statistic", referenced in 153 | - "/D/dist-samp" 154 | - Definition "std-pool" ("/D/std-pool"), referenced as 155 | - "pooled standard deviation", referenced in 156 | - "/P/ug-ttest2" 157 | - "/P/ugkv-ztest2" 158 | - Definition "z" ("/D/z"), referenced as 159 | - "standard scores", referenced in 160 | - "/P/corr-z" 161 | - Proof "beta-mode" ("/P/beta-mode"), referenced as 162 | - "mode of the beta distribution", referenced in 163 | - "/P/bin-map" 164 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 165 | - "raw moments of the beta-binomial distribution", referenced in 166 | - "/P/betabin-mome" 167 | - Proof "bin-cdf" ("/P/bin-cdf"), referenced as 168 | - "cumulative distribution function of a binomial distribution", referenced in 169 | - "/P/bin-test" 170 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 171 | - "expected value of a logarithmized Dirichlet variate", referenced in 172 | - "/P/dir-kl" 173 | - Proof "dir-mode" ("/P/dir-mode"), referenced as 174 | - "mode of the Dirichlet distribution", referenced in 175 | - "/P/mult-map" 176 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 177 | - "relationship between the Dirichlet and the gamma distribution", referenced in 178 | - "/P/dir-ep" 179 | - Proof "gam-mode" ("/P/gam-mode"), referenced as 180 | - "mode of the gamma distribution", referenced in 181 | - "/P/blr-map" 182 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 183 | - "Wilks' theorem", referenced in 184 | - "/P/ci-wilks" 185 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 186 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 187 | - "/P/mult-mle" 188 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 189 | - "Cochran's theorem for multivariate normal variables", referenced in 190 | - "/P/mlr-rssdist" 191 | - Proof "mvn-mode" ("/P/mvn-mode"), referenced as 192 | - "mode of the multivariate normal distribution", referenced in 193 | - "/P/blr-map" 194 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 195 | - "covariance of the multivariate t-distribution", referenced in 196 | - "/P/ng-cov" 197 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 198 | - "linear transformation theorem for the multivariate t-distribution", referenced in 199 | - "/P/blr-pcr" 200 | - "/P/blr-pp" 201 | - "/P/mvt-f" 202 | - "/P/nst-t" 203 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 204 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 205 | - "/P/mlr-rssdist" 206 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 207 | - "is a special case", referenced in 208 | - "/P/nst-t" 209 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 210 | - "Cochran's theorem", referenced in 211 | - "/P/anova1-f" 212 | - "/P/anova2-cochran" 213 | - "/P/norm-chi2" 214 | - Proof "var-samp" ("/P/var-samp"), referenced as 215 | - "unbiased sample variance", referenced in 216 | - "/P/rsq-resvar" 217 | - "unbiased sample variance of the dependent variable", referenced in 218 | - "/P/rsq-resvar" 219 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 220 | - "expected value of a Wishart log-determinant", referenced in 221 | - "/P/wish-kl" 222 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 223 | - "expected value of a Wishart random matrix", referenced in 224 | - "/P/wish-kl" 225 | - "expected value of the Wishart distribution", referenced in 226 | - "/P/nw-mean" 227 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 228 | - "is described by the probability density function", referenced in 229 | - "/P/gam-wish" 230 | - "probability density function of the Wishart distribution", referenced in 231 | - "/P/mblr-lme" 232 | - "/P/nw-pdf" 233 | - "/P/wish-kl" 234 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2024_09_20.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2024-09-20, 15:38): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blue" ("/D/blue"), referenced as 11 | - "best linear unbiased estimator", referenced in 12 | - "/P/iglm-blue" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "data" ("/D/data"), referenced as 19 | - "data", referenced in 20 | - "/D/gm" 21 | - "/D/mse" 22 | - "/P/lme-anc" 23 | - "data matrix", referenced in 24 | - "/P/glm-llr" 25 | - "data point", referenced in 26 | - "/D/prior-pred" 27 | - "data set", referenced in 28 | - "/D/cvlme" 29 | - "data vector", referenced in 30 | - "/P/mlr-llr" 31 | - "measured data", referenced in 32 | - "/D/cval" 33 | - "/D/hyp" 34 | - "/D/post-pred" 35 | - "/D/pval" 36 | - "/D/test" 37 | - "/D/tstat" 38 | - "/P/iglm-blue" 39 | - "measured univariate signal", referenced in 40 | - "/P/blr-lbf" 41 | - "new data", referenced in 42 | - "/P/postpred-jl" 43 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 44 | - "exponential family", referenced in 45 | - "/P/dir-mle" 46 | - Definition "dist-uni" ("/D/dist-uni"), referenced as 47 | - "unimodal probability distribution", referenced in 48 | - "/P/norm-extr" 49 | - Definition "dof" ("/D/dof"), referenced as 50 | - "degree of freedom", referenced in 51 | - "/P/ci-wilks" 52 | - "degrees of freedom", referenced in 53 | - "/D/f" 54 | - "/D/fstat" 55 | - "/D/t" 56 | - "/P/anova1-repara" 57 | - "/P/blr-pcr" 58 | - "/P/blr-pp" 59 | - "/P/f-pdf" 60 | - "/P/mlr-f" 61 | - "/P/mlr-rssdist" 62 | - "/P/mlr-t" 63 | - "/P/mvn-chi2" 64 | - "/P/rsq-der" 65 | - "/P/rsq-test" 66 | - "/P/t-pdf" 67 | - "/P/ug-fev" 68 | - "/P/ug-ttest1" 69 | - "/P/ug-ttest2" 70 | - "/P/ug-ttestp" 71 | - Definition "est-unb" ("/D/est-unb"), referenced as 72 | - "bias", referenced in 73 | - "/P/resvar-bias" 74 | - "biased estimates", referenced in 75 | - "/P/mle-bias" 76 | - "biased estimator", referenced in 77 | - "/P/resvar-bias" 78 | - "/P/resvar-biasp" 79 | - "/P/resvar-unb" 80 | - "/P/resvar-unbp" 81 | - "unbiased estimator", referenced in 82 | - "/P/resvar-unb" 83 | - "/P/resvar-unbp" 84 | - "unbiased estimators", referenced in 85 | - "/P/slr-olsmean" 86 | - Definition "est" ("/D/est"), referenced as 87 | - "estimator", referenced in 88 | - "/D/mse" 89 | - "parameter estimates", referenced in 90 | - "/P/snr-rsq" 91 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 92 | - "conditional expectation", referenced in 93 | - "/P/mean-tot" 94 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 95 | - "measurable function", referenced in 96 | - "/D/rvar" 97 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 98 | - "non-central chi-squared distribution", referenced in 99 | - "/P/mlr-rssdist" 100 | - Definition "odds" ("/D/odds"), referenced as 101 | - "odds ratio", referenced in 102 | - "/P/lbf-der" 103 | - "/P/pmp-bf" 104 | - "/P/pmp-lbf" 105 | - Definition "para" ("/D/para"), referenced as 106 | - "parameter", referenced in 107 | - "/D/ci" 108 | - "/D/mse" 109 | - "parameters", referenced in 110 | - "/D/gm" 111 | - Definition "post-odd" ("/D/post-odd"), referenced as 112 | - "posterior odds", referenced in 113 | - "/P/bayes-rule" 114 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 115 | - "prior odds", referenced in 116 | - "/P/bayes-rule" 117 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 118 | - "probability measure", referenced in 119 | - "/D/prob-ax" 120 | - "/D/prob-spc" 121 | - Definition "samp-size" ("/D/samp-size"), referenced as 122 | - "sample size", referenced in 123 | - "/D/dist-samp" 124 | - "/P/mean-wlln" 125 | - Definition "samp" ("/D/samp"), referenced as 126 | - "random sample", referenced in 127 | - "/D/ci" 128 | - "/D/dist-samp" 129 | - "sample", referenced in 130 | - "/D/corrmat-samp" 131 | - "/D/covmat-samp" 132 | - "/D/max" 133 | - "/D/mean-samp" 134 | - "/D/med" 135 | - "/D/min" 136 | - "/D/mode" 137 | - "/D/skew-samp" 138 | - "/D/var-samp" 139 | - "/P/matn-samp" 140 | - "/P/ng-samp" 141 | - "samples", referenced in 142 | - "/D/corr-samp" 143 | - "/D/cov-samp" 144 | - "/D/mse" 145 | - "/P/corr-z" 146 | - Definition "stat" ("/D/stat"), referenced as 147 | - "statistic", referenced in 148 | - "/D/dist-samp" 149 | - Definition "std-pool" ("/D/std-pool"), referenced as 150 | - "pooled standard deviation", referenced in 151 | - "/P/ug-ttest2" 152 | - "/P/ugkv-ztest2" 153 | - Definition "z" ("/D/z"), referenced as 154 | - "standard scores", referenced in 155 | - "/P/corr-z" 156 | - Proof "beta-mode" ("/P/beta-mode"), referenced as 157 | - "mode of the beta distribution", referenced in 158 | - "/P/bin-map" 159 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 160 | - "raw moments of the beta-binomial distribution", referenced in 161 | - "/P/betabin-mome" 162 | - Proof "bin-cdf" ("/P/bin-cdf"), referenced as 163 | - "cumulative distribution function of a binomial distribution", referenced in 164 | - "/P/bin-test" 165 | - Proof "cheb-ineq" ("/P/cheb-ineq"), referenced as 166 | - "Chebyshev's inequality", referenced in 167 | - "/P/mean-wlln" 168 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 169 | - "expected value of a logarithmized Dirichlet variate", referenced in 170 | - "/P/dir-kl" 171 | - Proof "dir-mode" ("/P/dir-mode"), referenced as 172 | - "mode of the Dirichlet distribution", referenced in 173 | - "/P/mult-map" 174 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 175 | - "relationship between the Dirichlet and the gamma distribution", referenced in 176 | - "/P/dir-ep" 177 | - Proof "gam-mode" ("/P/gam-mode"), referenced as 178 | - "mode of the gamma distribution", referenced in 179 | - "/P/blr-map" 180 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 181 | - "Wilks' theorem", referenced in 182 | - "/P/ci-wilks" 183 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 184 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 185 | - "/P/mult-mle" 186 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 187 | - "Cochran's theorem for multivariate normal variables", referenced in 188 | - "/P/mlr-rssdist" 189 | - Proof "mvn-mode" ("/P/mvn-mode"), referenced as 190 | - "mode of the multivariate normal distribution", referenced in 191 | - "/P/blr-map" 192 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 193 | - "covariance of the multivariate t-distribution", referenced in 194 | - "/P/ng-cov" 195 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 196 | - "linear transformation theorem for the multivariate t-distribution", referenced in 197 | - "/P/blr-pcr" 198 | - "/P/blr-pp" 199 | - "/P/mvt-f" 200 | - "/P/nst-t" 201 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 202 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 203 | - "/P/mlr-rssdist" 204 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 205 | - "is a special case", referenced in 206 | - "/P/nst-t" 207 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 208 | - "Cochran's theorem", referenced in 209 | - "/P/anova1-f" 210 | - "/P/anova2-cochran" 211 | - "/P/norm-chi2" 212 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 213 | - "expected value of a Wishart log-determinant", referenced in 214 | - "/P/wish-kl" 215 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 216 | - "expected value of a Wishart random matrix", referenced in 217 | - "/P/wish-kl" 218 | - "expected value of the Wishart distribution", referenced in 219 | - "/P/nw-mean" 220 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 221 | - "is described by the probability density function", referenced in 222 | - "/P/gam-wish" 223 | - "probability density function of the Wishart distribution", referenced in 224 | - "/P/mblr-lme" 225 | - "/P/nw-pdf" 226 | - "/P/wish-kl" 227 | -------------------------------------------------------------------------------- /report_links/Dead_Links_2025_01_14.txt: -------------------------------------------------------------------------------- 1 | -> Pages which are referenced but non-existing (2025-01-14, 17:02): 2 | - Definition "anovan" ("/D/anovan"), referenced as 3 | - "more", referenced in 4 | - "/D/iass" 5 | - "multiple", referenced in 6 | - "/D/trss" 7 | - Definition "bias" ("/D/bias"), referenced as 8 | - "bias", referenced in 9 | - "/P/mse-bnv" 10 | - Definition "blue" ("/D/blue"), referenced as 11 | - "best linear unbiased estimator", referenced in 12 | - "/P/iglm-blue" 13 | - Definition "cr" ("/D/cr"), referenced as 14 | - "credibility level", referenced in 15 | - "/P/blr-pcr" 16 | - "credibility region", referenced in 17 | - "/P/blr-pcr" 18 | - Definition "dist-expfam" ("/D/dist-expfam"), referenced as 19 | - "exponential family", referenced in 20 | - "/P/dir-mle" 21 | - Definition "dist-mixt" ("/D/dist-mixt"), referenced as 22 | - "mixture distribution", referenced in 23 | - "/P/norm-corrind" 24 | - Definition "marg" ("/D/marg"), referenced as 25 | - "marginals", referenced in 26 | - "/P/bvn-mi" 27 | - "/P/mvn-mi" 28 | - Definition "mean-cond" ("/D/mean-cond"), referenced as 29 | - "conditional expectation", referenced in 30 | - "/P/mean-tot" 31 | - Definition "mean-geom" ("/D/mean-geom"), referenced as 32 | - "geometric mean", referenced in 33 | - "/P/lognorm-geomind" 34 | - Definition "meas-fct" ("/D/meas-fct"), referenced as 35 | - "measurable function", referenced in 36 | - "/D/rvar" 37 | - Definition "ncchi2" ("/D/ncchi2"), referenced as 38 | - "non-central chi-squared distribution", referenced in 39 | - "/P/mlr-rssdist" 40 | - Definition "odds" ("/D/odds"), referenced as 41 | - "odds ratio", referenced in 42 | - "/P/lbf-der" 43 | - "/P/pmp-bf" 44 | - "/P/pmp-lbf" 45 | - Definition "post-odd" ("/D/post-odd"), referenced as 46 | - "posterior odds", referenced in 47 | - "/P/bayes-rule" 48 | - Definition "prior-odd" ("/D/prior-odd"), referenced as 49 | - "prior odds", referenced in 50 | - "/P/bayes-rule" 51 | - Definition "prob-add" ("/D/prob-add"), referenced as 52 | - "addition law of probability", referenced in 53 | - "/P/prob-exc" 54 | - Definition "prob-meas" ("/D/prob-meas"), referenced as 55 | - "probability measure", referenced in 56 | - "/D/prob-ax" 57 | - "/D/prob-spc" 58 | - Definition "std-pool" ("/D/std-pool"), referenced as 59 | - "pooled standard deviation", referenced in 60 | - "/P/ug-ttest2" 61 | - "/P/ugkv-ztest2" 62 | - Definition "z" ("/D/z"), referenced as 63 | - "standard scores", referenced in 64 | - "/P/corr-z" 65 | - Proof "beta-mode" ("/P/beta-mode"), referenced as 66 | - "mode of the beta distribution", referenced in 67 | - "/P/bin-map" 68 | - Proof "betabin-mom" ("/P/betabin-mom"), referenced as 69 | - "raw moments of the beta-binomial distribution", referenced in 70 | - "/P/betabin-mome" 71 | - Proof "bin-cdf" ("/P/bin-cdf"), referenced as 72 | - "cumulative distribution function of a binomial distribution", referenced in 73 | - "/P/bin-test" 74 | - Proof "cheb-ineq" ("/P/cheb-ineq"), referenced as 75 | - "Chebyshev's inequality", referenced in 76 | - "/P/mean-wlln" 77 | - Proof "dir-logmean" ("/P/dir-logmean"), referenced as 78 | - "expected value of a logarithmized Dirichlet variate", referenced in 79 | - "/P/dir-kl" 80 | - Proof "dir-mode" ("/P/dir-mode"), referenced as 81 | - "mode of the Dirichlet distribution", referenced in 82 | - "/P/mult-map" 83 | - Proof "gam-dir" ("/P/gam-dir"), referenced as 84 | - "relationship between the Dirichlet and the gamma distribution", referenced in 85 | - "/P/dir-ep" 86 | - Proof "gam-mode" ("/P/gam-mode"), referenced as 87 | - "mode of the gamma distribution", referenced in 88 | - "/P/blr-map" 89 | - Proof "llr-wilks" ("/P/llr-wilks"), referenced as 90 | - "Wilks' theorem", referenced in 91 | - "/P/ci-wilks" 92 | - Proof "mult-marg" ("/P/mult-marg"), referenced as 93 | - "the marginal distribution of each element in a multinomial random vector is a binomial distribution", referenced in 94 | - "/P/mult-mle" 95 | - Proof "mvn-cochran" ("/P/mvn-cochran"), referenced as 96 | - "Cochran's theorem for multivariate normal variables", referenced in 97 | - "/P/mlr-rssdist" 98 | - Proof "mvn-mode" ("/P/mvn-mode"), referenced as 99 | - "mode of the multivariate normal distribution", referenced in 100 | - "/P/blr-map" 101 | - Proof "mvt-cov" ("/P/mvt-cov"), referenced as 102 | - "covariance of the multivariate t-distribution", referenced in 103 | - "/P/ng-cov" 104 | - Proof "mvt-ltt" ("/P/mvt-ltt"), referenced as 105 | - "linear transformation theorem for the multivariate t-distribution", referenced in 106 | - "/P/blr-pcr" 107 | - "/P/blr-pp" 108 | - "/P/mvt-f" 109 | - "/P/nst-t" 110 | - Proof "ncchi2-chi2" ("/P/ncchi2-chi2"), referenced as 111 | - "non-central chi-squared distribution with non-centrality parameter of zero reduces to the central chi-squared distribution", referenced in 112 | - "/P/mlr-rssdist" 113 | - Proof "nst-mvt" ("/P/nst-mvt"), referenced as 114 | - "is a special case", referenced in 115 | - "/P/nst-t" 116 | - Proof "pdf" ("/P/pdf"), referenced as 117 | - "probability density function", referenced in 118 | - "/D/dist-uni" 119 | - Proof "snorm-cochran" ("/P/snorm-cochran"), referenced as 120 | - "Cochran's theorem", referenced in 121 | - "/P/anova1-f" 122 | - "/P/anova2-cochran" 123 | - "/P/norm-chi2" 124 | - Proof "wish-logdetmean" ("/P/wish-logdetmean"), referenced as 125 | - "expected value of a Wishart log-determinant", referenced in 126 | - "/P/wish-kl" 127 | - Proof "wish-mean" ("/P/wish-mean"), referenced as 128 | - "expected value of a Wishart random matrix", referenced in 129 | - "/P/wish-kl" 130 | - "expected value of the Wishart distribution", referenced in 131 | - "/P/nw-mean" 132 | - Proof "wish-pdf" ("/P/wish-pdf"), referenced as 133 | - "is described by the probability density function", referenced in 134 | - "/P/gam-wish" 135 | - "probability density function of the Wishart distribution", referenced in 136 | - "/P/mblr-lme" 137 | - "/P/nw-pdf" 138 | - "/P/wish-kl" 139 | -------------------------------------------------------------------------------- /tweet_proof.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Tweet New Proof from the StatProofBook 4 | _ 5 | This script generates and ouputs a tweet text for posting a new proof, 6 | given only the proof shortcut (e.g. "mvn-ltt"). 7 | 8 | It can be called from the command line as 9 | tweet_proof [shortcut] 10 | or, e.g. within Spyder, as 11 | runfile('tweet_proof.py', args='glm-mi') 12 | 13 | Author: Joram Soch, OvGU Magdeburg 14 | E-Mail: joram.soch@ovgu.de 15 | 16 | First edit: 2024-06-21 12:19:00 17 | Last edit: 2024-06-21 12:19:00 18 | """ 19 | 20 | 21 | # Import modules 22 | #-----------------------------------------------------------------------------# 23 | from sys import argv 24 | import BookTools as spbt 25 | 26 | # Get function argument 27 | #-----------------------------------------------------------------------------# 28 | try: 29 | script, shortcut = argv 30 | except ValueError: 31 | shortcut = '-temp-' 32 | 33 | # Load requested proof 34 | #-----------------------------------------------------------------------------# 35 | rep_dir = spbt.get_rep_dir('offline') 36 | filename = rep_dir + '/P/' + shortcut + '.md' 37 | file_obj = open(filename, 'r') 38 | file_txt = file_obj.readlines() 39 | file_obj.close() 40 | 41 | # Extract and print 42 | #-----------------------------------------------------------------------------# 43 | proof_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 44 | tweet_txt = 'Proof #{}: "{}" ({}) #NewProof\nhttps://statproofbook.github.io/P/{}' 45 | tweet_txt = tweet_txt.format(proof_id[1:], title, shortcut, shortcut) 46 | print('\n'+tweet_txt) -------------------------------------------------------------------------------- /tweet_proofs.py: -------------------------------------------------------------------------------- 1 | #!/usr/bin/env python 2 | """ 3 | Tweet Random Proofs from the StatProofBook 4 | _ 5 | This script generates a list of random proofs from the StatProofBook, 6 | one proof per day, without repetition within a year, and then saves 7 | this list into an MS Office Excel sheet. 8 | 9 | Author: Joram Soch, BCCN Berlin 10 | E-Mail: joram.soch@bccn-berlin.de 11 | 12 | First edit: 2024-01-01 17:13:00 13 | Last edit: 2024-01-01 17:13:00 14 | """ 15 | 16 | 17 | # Import modules 18 | #-----------------------------------------------------------------------------# 19 | import os 20 | import random 21 | import webbrowser 22 | import pandas as pd 23 | import BookTools as spbt 24 | from datetime import datetime, timedelta 25 | 26 | # Set year to generate for 27 | #-----------------------------------------------------------------------------# 28 | year = 0 # enter 0 for current year 29 | 30 | # List files in proof directory 31 | #-----------------------------------------------------------------------------# 32 | rep_dir = spbt.get_rep_dir('offline') 33 | files = os.listdir(rep_dir + '/P/') 34 | files = [file for file in files if not file.startswith('-temp-')] 35 | proofs = [] 36 | 37 | # Browse through list of files 38 | #-----------------------------------------------------------------------------# 39 | for file in files: 40 | 41 | # Read proof text 42 | #-------------------------------------------------------------------------# 43 | file_obj = open(rep_dir + '/P/' + file, 'r') 44 | file_txt = file_obj.readlines() 45 | file_obj.close() 46 | 47 | # Get proof info 48 | #-------------------------------------------------------------------------# 49 | proof_id, shortcut, title, username, date = spbt.get_meta_data(file_txt) 50 | proofs.append({'proof_id': proof_id, 'shortcut': shortcut, 'title': title, \ 51 | 'username': username, 'date': date}) 52 | del file_obj, file_txt, proof_id, shortcut, title, username, date 53 | 54 | # Collect eligible proofs and randomize 55 | #-----------------------------------------------------------------------------# 56 | if year == 0: 57 | dt = datetime.today() 58 | ys = dt.year 59 | year = ys 60 | else: 61 | ys = year 62 | d0 = datetime(ys, 1, 1) 63 | proofs = [proof for proof in proofs if proof['date']