I am trying to plot an ancestral states tree generated in RevBayes using RevGadgets 1.0.0 and ggtree 2.4.2. The call is the following, and all of the variables check out, including the tree file, in Nexus format, which I can open in FigTree etc.
pp=plot_ancestral_states(tree_file=tree_fn,
include_start_states=T,
summary_statistic="PieRange",
state_labels=state_labels,
state_colors=state_colors,
tip_label_size=2.5,
tip_label_offset=0.1,
node_label_size=0,
shoulder_label_size=0,
show_posterior_legend=T,
tip_pie_diameter=0.5,
node_pie_diameter=2.0,
pie_nudge_x=0.03,
pie_nudge_y=0.16,
alpha=1)
The error message is "Error in DataMask$new(.data, caller_env) : argument "caller_env" is missing, with no default"
This seems like an rlang error, but I'm not finding a way to troubleshoot it. There's zero documentation for the RevGadgets call "plot_ancestral_states."
Thanks for any assistance.
Turns out it's a problem with the latest version of dplyr. Removing dplyr 1.0.6 and installing 1.0.5 from the archive fixed the issue.