First question on stack overflow. I'm using R in RStudio to make a table containing some data that I have already formatted in a data frame, some of which contain a low bound and a high bound, for example minimum fertilizer applied (kg/ha) and maximum fertilizer applied (kg/ha) in the same experiment. In some experiments the range is from 0-150, some it is from 200-300, and some the only value is 64. In the attached picture I drew out the type of table bars I am looking for. I don't need an interactive table also. 
Does anyone know if there is a package in R that can help me make this table? I see R packages like formattable and gt/gtExtras and reactable/reactablefmtr that have functions to make horizontal bars in each table row that represent a single data point, but I haven't seen examples that align with what I'm trying to do.
Thank you in advance for any help or pointers in the right direction!
You can make a stacked bar plot with an invisible lower bar. Suppose your data is like this:
Then you can do:
Created on 2022-11-19 with reprex v2.0.2