Skip to content

Commit

Permalink
Minor improvements in plot function.
Browse files Browse the repository at this point in the history
  • Loading branch information
segsell committed Mar 25, 2020
1 parent 3485904 commit de9d42a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion grmpy/plot/plot.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def plot_mte(
90 percent confidence bands.
"""
# Read init dict and data
init_dict = read(init_file)
init_dict = read(init_file, semipar)
data = read_data(init_dict["ESTIMATION"]["file"])

dict_, data = check_append_constant(init_file, init_dict, data, semipar)
Expand Down
2 changes: 1 addition & 1 deletion grmpy/plot/plot_auxiliary.py
Original file line number Diff line number Diff line change
Expand Up @@ -142,7 +142,7 @@ def bootstrap(init_file, nbootstraps):
given an init_file and the number of bootsraps to be drawn.
"""
check_presence_init(init_file)
dict_ = read(init_file)
dict_ = read(init_file, semipar=True)

# Process the information specified in the initialization file
nbins, logit, bandwidth, gridsize, a, b = process_user_input(dict_)
Expand Down

0 comments on commit de9d42a

Please sign in to comment.