Skip to content

Commit 72ed60e

Browse files
authored
Merge pull request #160 from cadenmyers13/fitresults-dep
Deprecate: deprecate all methods of `FitResults`
2 parents 03cf0bd + a08850f commit 72ed60e

25 files changed

+288
-52
lines changed

docs/examples/coreshellnp.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ def main():
206206

207207
# Generate and print the FitResults
208208
res = FitResults(recipe)
209-
res.printResults()
209+
res.print_results()
210210

211211
# Plot!
212212
plotResults(recipe)

docs/examples/crystalpdf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -168,7 +168,7 @@ def plotResults(recipe):
168168

169169
# Generate and print the FitResults
170170
res = FitResults(recipe)
171-
res.printResults()
171+
res.print_results()
172172

173173
# Plot!
174174
plotResults(recipe)

docs/examples/crystalpdfall.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -232,7 +232,7 @@ def plotResults(recipe):
232232

233233
# Generate and print the FitResults
234234
res = FitResults(recipe)
235-
res.printResults()
235+
res.print_results()
236236

237237
# Plot!
238238
plotResults(recipe)

docs/examples/crystalpdfobjcryst.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -121,7 +121,7 @@ def makeRecipe(ciffile, datname):
121121

122122
# Generate and print the FitResults
123123
res = FitResults(recipe)
124-
res.printResults()
124+
res.print_results()
125125

126126
# Plot!
127127
plotResults(recipe)

docs/examples/crystalpdftwodata.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ def plotResults(recipe):
188188

189189
# Generate and print the FitResults
190190
res = FitResults(recipe)
191-
res.printResults()
191+
res.print_results()
192192

193193
# Plot!
194194
plotResults(recipe)

docs/examples/crystalpdftwophase.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -179,7 +179,7 @@ def plotResults(recipe):
179179

180180
# Generate and print the FitResults
181181
res = FitResults(recipe)
182-
res.printResults()
182+
res.print_results()
183183

184184
# Plot!
185185
plotResults(recipe)

docs/examples/debyemodel.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ def main():
193193
res = FitResults(recipe)
194194

195195
# Print the results
196-
res.printResults()
196+
res.print_results()
197197

198198
# Plot the results
199199
plotResults(recipe)

docs/examples/debyemodelII.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,7 @@ def main():
146146
res = FitResults(recipe)
147147

148148
# Print the results
149-
res.printResults()
149+
res.print_results()
150150

151151
# Plot the results
152152
plotResults(recipe)

docs/examples/ellipsoidsas.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -122,7 +122,7 @@ def plotResults(recipe):
122122

123123
# Generate and print the FitResults
124124
res = FitResults(recipe)
125-
res.printResults()
125+
res.print_results()
126126

127127
# Plot!
128128
plotResults(recipe)

docs/examples/gaussianrecipe.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ def main():
7373
res = FitResults(recipe)
7474

7575
# Print the results.
76-
res.printResults()
76+
res.print_results()
7777

7878
# Plot the results.
7979
plotResults(recipe)

0 commit comments

Comments
 (0)