NEWS
  • NLREG has been selected as the "Editor"s Pick" by SoftSeek.

    link to softseek.com

  • NLREG is in use at hundreds of universities, laboratories, and government agencies around the world (over 20 countries). For a list of a few organizations using NLREG click here.

  • If you have categorical variables, you may want to use a Decision Tree to model your data. Check out the DTREG Decision Tree Builder.

  • You also should check out the News Rover program that automatically scans Usenet newsgroups, downloads messages of interest to you, decodes binary file attachments, reconstructs files split across multiple messages, and eliminates spam and duplicate files.

    Fit A Five-Parameter Logistic Function


    In their paper "A five-parameter logistic equation for investigating asymmetry of curvature in baroreflex studies," James H. Ricketts and Geoffrey A. Head develop a 5-parameter logistic (sigmoidal) function to model heart rate as a function of blood pressure. They call this model "Baro5".

    The five parameters that define the function are:
    P1 = asymptotic minimum
    P2 = asymptotic maximum
    P3 = slope parameter
    P4 = value at inflection point
    p5 = slope parameter

    Here are the NLREG statements to fit this function:

    Title "Five-parameter Logistic Function (Baro5)";
    Variables BP, HR;
    Parameters p1=50, p2=200, p3=-0.5, p4=85, p5=-0.5;
    Double c, f, g, h;
    c = 2*p3*p5/abs(p3+p5);
    f = 1/(1+exp(-c*(p4-BP)));
    g = exp(p3*(p4-BP));
    h = exp(p5*(p4-BP));
    Function HR = p1+(p2/(1+f*g+(1-f)*h));
    Plot xvar=BP, xlabel="Blood Pressure", ylabel="Heart Rate";
    Data;
    [ data goes here ]
    

    Here is a plot generated by NLREG showing the Baro5 function fitted to a a set of values.



    Return to NLREG home page

    Download demonstration copy of NLREG.

    Download manuals for NLREG.

    Purchase NLREG.

    DTREG Decision Tree building software.