Can I do Tukey's HSD test combined with ec50estimator?

I'm trying tukey's HSD test of my EC50 values calculated by "ec50estimator" package.
It's combined with "readxl" package.

data1 <- read_excel("C:/Desktop/Excel",
sheet = "Fungicide")
df_ec50 = estimate_EC50(growth~conc,
data =data1,
isolate_col = "Isolates",
strata_col = c("fungicide"),
interval = "delta",
fct = drc::LL.3())
head(df_ec50)
view(df_ec50)

After this, I got Estimate(Average) and Std. error of my EC50 values for each isolates, looks like this:
Tukey

Question is: How can I do Tukey's HSD test with this result? (statistically compares each isolate's sensitivity)

It looks i should do Tukey's HSD with given average and std. error, but is this possible?

This topic was automatically closed 21 days after the last reply. New replies are no longer allowed.

If you have a query related to it or one of the replies, start a new topic and refer back with a link.