I think survival analysis would be a sensible choice here, given the fact that this process unfolds over time; that the process has a binary outcome (as you've construed it); and that some of your observations are right censored. If you go that route, you would need to make at least two significant changes.
- Reframe your outcome of interest as a binary event, e.g., the achievement of full funding. You could then move your continuous measure of funding to date to the other side of the equation, to incorporate information about partial successes into the analysis.
- Add time to the mix. This would probably be something like "time since founding," where you can put all the cases on a comparable scale, even if they occurred at different points in calendar time.
In R, the workhorse package for survival analysis is, appropriately, survival
. For an overview of available tools and links to relevant documents, check out the CRAN Task View (here).
I'm not going to try to write code to perform an analysis when I don't have, and am not familiar with, the relevant data or research question. I will say, though, that you'll probably want to look into designs and code for analyses with time-varying covariates, i.e., where values of some or all of your independent variables change over the course of time between project launch and the end of observation (via success or censoring). That would be a must if you want to consider partial funding as a covariate.
The alternative would be to estimate an initial-conditions model with reputation as the (sole?) covariate and time to full funding as the outcome of interest. If you go that route, you just need to ensure that your measure of reputation is based strictly on information available prior to project launch.
If you really want to complicate things, you could try a competing-risks approach, where you simultaneously consider the likelihood of two competing events: achievement of full funding, or project termination short of full funding. Project "death" isn't the same as right censoring of "live" projects, and this approach would allow your estimates to reflect that fact.