How to plot a log graph using grapher with a given set of data

hi there,
im just wondering is it possible to plot a log graph in the grapher software with a given set of data, and also give an error bar and a best-fit line for it?
so here is the set of data,
Concentration of BCh (M)
Mean % Specific Binding (%)
Standard Deviation
3 ×10⁻⁹
71.52
9.52
1 ×10⁻⁸
57.30
8.56
3 ×10⁻⁸
39.15
9.40
1 ×10⁻⁷
24.13
10.15
3 ×10⁻⁷
14.77
3.31
1 ×10⁻⁶
7.22
2.02
hope someone could help

Try these:
http://y.barois.free.fr/grapher/Bienvenue.html
http://homepage.mac.com/tlindywizdumb/math/Grapher_index.htm
http://homepage.mac.com/tlindywizdumb/math/Grapher/Grapher_HowTo.pdf

Similar Messages

  • I'm trying to use a madcatz controller on the mac but it turns on for 2 seconds and turns off. the system profiler picks it up as a xbox 360 gamepad but says its not been configured. how can i allow my self use this with my games.

    i'm trying to use a madcatz controller on the mac but it turns on for 2 seconds and turns off. the system profiler picks it up as a xbox 360 gamepad but says its not been configured. how can i allow my self use this with my games!

    I have exactly the same problem.
    I'm a little peed-off with Microsoft on this. The original wireless controller I have doesn't work either since the cable I'm using is 'just' the charge and play cable, so a direct connection to my Mac won't work with this cable. It's a cable for god's sake. Why on EARTH put any limitations on this!?!?
    Next I learn I need an additional USB wireless receiver from Microsoft to get my original 360 controller to talk to my Mac. As I certainly don't want to fork any more microsoft dollars on this, this is not an option.
    Next I think, yes! I have a MadCatz 360 wired USB controller. This should surely do the trick just plugging it in and the way I go. But oh no, for some reason I plug my MadCatz Xbox360 controller in, it flashes a few times then switches off and can't be turned on again.
    The System Profiles recognizes it as a MadCatz 360 device controller but that is about it, but the ontroller software I download for the System Prefs (360Controller, USBOverdrive etc) don't even recognize the controller as being plugged in.
    What the **** Is The Microsoft Deal with all of this!?!?
    PS: Oh, and I forgot to mention, there are No drivers for device 4716 that I can find on the MadCatz website, or am I going blind?
    If anyone has a link, it would be appreciated.
    Message was edited by: nostrawaggus

  • How to plot 3D spectrogra​m using usrp2920 spectrum sensing output

    hi,
    i'm woring on Real-time spectrum sensing using usrp with labview. i would like to know how to plot the usrp baseband spectral info as a 3D spectrogram over the time interval of sensing.

    You can use the 3D graph from the 3D graph palette in LabVIEW.
    You can use shift registers in a loop to catenate each new spectrum measurement (array) to Z matrix (which is the values matrix). This will create a kind of flow effect.

  • How to update multi-handle graph with a new set of data points

    I have multiple sets of data that all have the same number of columns but different numbers of rows. Each column is plotted on a graph. I want to keep the format of the original graph with the same number of handles, and update each handle with new data points by bringing in a new set of points.
    See attachment for example.
    Attachments:
    hiqgraph.HiQ ‏14 KB

    There are several ways to do this.
    1. You can create a HiQ script that plots the new data to the graph using the existing plots. The following three lines plot the new data into the three existing plots (indicated by the plot handles.) Put these lines into a HiQ script object, right-click and select Run.
    addplot(Graph2D_1,-1,data2[*,1],data2[*,2]);
    addplot(Graph2D_1,-2,data2[*,1],data2[*,3]);
    addplot(Graph2D_1,-3,data2[*,1],data2[*,4]);
    2. You can do it interactively by right-clicking on the individual plots and choosing Change... This will being up a dialog you can use to change the data in that plot. This will be difficult to do when plots are right on top of each other, so you may want to display the plot legend, where you can also right-click a
    nd select Change...
    3. I like your idea about DataSocket. This way it will happen automatically. Whenever the matrix published to DataSocket changes, the plot should automatically update.
    I hope this helps.
    David

  • How do you generate log files using ActionScript 3?

    Is there any way to log activity using AS3 by using a Red5 Media Server?
    I cam across www.as3commons.org/as3-commons-logging but in this I have no clue how to access logfiles or where the logfiles are generated.
    I was wondering if there's a way to generate and store log files on a media server. Say for example, I need to log when the user starts recording a video, when the connection to the media server is successful and so on.
    Any help would be greatly appreciated. Thanks.

    In FMS backend scrips also works then log file can be create from beckend scripts.

  • I Want to graph useing MSGraph with array data

    Hi..
    I need to skill to graph using the msgraph with array data
    My forte version 2.0h
    E-MAIL ADDRESS : [email protected]
    TEL(C) : 02)273-3131(5233), 0331)40-8366(ÇöÀç ¿©±â ÀÖ½¿)
    PAGER : 015-959-9390
    HAND PHONE : 011-411-9395
    To unsubscribe, email '[email protected]' with
    'unsubscribe forte-users' as the body of the message.
    Searchable thread archive <URL:http://pinehurst.sageit.com/listarchive/>

    This #pdfloc data is generated by RMSDK when user highlight (annotation) pdf and keep it in XML format in file system: E.g.
    <annotation y="-116" isvisible="False" x="-110" width="220" height="100">
            <dc:identifier>urn:uuid:DF061693-A668-49DF-A20B-DE243C463919</dc:identifier>
            <dc:date>2015-03-02T12:04:53Z</dc:date>
            <dc:creator>creator id</dc:creator>
            <dc:title>Page 4, 02-Mar-2015 5:34 pm</dc:title>
            <target>
                <fragment start="#pdfloc(7f54,3,37,0,0,0,0,1)" end="#pdfloc(7f54,3,37,3,1,0,1,1)">
                    <text>by Matt</text>
                </fragment>
            </target>
            <content>
                <dc:date>2015-03-02T12:04:53Z</dc:date>
                <text></text>
            </content>
    </annotation>

  • How to write to log files using java files from JSP

    Anybody knows different options in writing to log files using JSP?

    Do you have an example?in the init() method of the servlet put the following
            FileOutputStream out = new FileOutputStream("your-log-file");
            PrintStream ps = new PrintStream(out);
            System.setOut(ps);
            System.setErr(ps);load the servlet on startup using <load-on-startup> in web.xml

  • Drilling down on a Graph Panel component with a View Object as Data Source

    I am using a Graph panel attached to a View Object as the data source, to display a bar graph. I would like to support a double-click on
    a specific bar, to display the row(s) of data behind the bar. I can see in the BI Beans API reference a DrillRequesting event on the Graph class.
    Is this the correct event in which to place logic for this function? How can I trigger this event? How can I retrieve the component attributes
    (i.e. group, series, values), for the selected bar?
    Thanks in advance for the help!

    DrillRequesting event is used in association with BI Crosstab control.
    Did you try addMouseListener() method on the Graph in association
    with getDataSource() method ?.
    You may also want to try posting this query in the BI Bean forum.
    HTH,
    Sathish

  • How to trigger New page while using ALV with classes/oops?

    Hi All
    I am trying to print a report which has to show the data in two pages.
    I am using ALV with classes/oops.
    Though I am able to print the report but a new page is not coming. Whole of the data is coming in one single page.
    Please tell me as to how to trigger a NEW PAGE while using ALV with classes/oops.
    Please send some code samples also if available.
    Thanks in advance.
    Jerry

    using sort option you can do it. in case of grid/oo alv class ALV you can view that only in print mode/preview mode.
    in case of list you can view that directly.
    sort-fieldname = 'FIELDNAME'.
    sort-group = '*'  "triggers new page
    sort-up = 'X'.
    append sort to it_sort.

  • How to install AdobeFnt07.lst and use it with Illustrator

    Hello,
    I received font files to make a work, in this pack there are some files called with the name and type of font (like DIN Short, DINBla, DINBlaIta, DINBol, ... ) and one file called AdobeFnt07.lst.
    Could you tell me how I can install this font's file on my Macintosh to be able to use it with Illustrator (CS5)?
    Thank you very much
    Cheers

    I'm sorry I misunderstood your last message
    This is the screenshot of my view, let me know what i have to do to use this font.
    Thank you

  • How do I keep logged in on websites with Safari?

    Hi everyone,
    I have encountered a new problem: Safari can't keep me logged in on some of the sites that I visit daily, like Hotmail, Flickr, iMDB, ebay and Gmail. The browser remembers my usernames & passwords, but I still get logged off automatically within a few hours once I logged into a site. Firefox doesn't have this problem. Is it possible to stay logged in using Safari? Thanks!

    Sometimes cookies can get corrupted. You'll have to recover your password for those sites before proceeding so that you can re-enter them after taking the steps below.
    Safari menu -> Preferences -> Security -> edit the cookies and delete the cookies for the sites that are misbehaving. I'm seeing a similar issue in Safari 3.0.4, and just did that solution. We'll see if it solves it or not.
    Message was edited by: a brody

  • How to store a layout, when using CL_SALV_TREE with a container?

    Hello,
    I'd like to use an object of type CL_SALV_TREE, that is placed on a custom container (and therefore not displayed in fullscreen).
    But how do I get the functionality to store a layout, when using CL_SALV_TREE not in fullscreen mode? If you use it in fullscreen mode, you just have to define the function code in your gui status and everything is ok.
    But since I want to place my CL_SALV_TREE on a custom container, that method does not work. If I call <my_salv_tree>->get_functions( ) it returns a table, that holds just six entries. So, the appropiate function for storing a layout does not seem to be in the default set of functions, when using CL_SALV_TREE with a custom container. But how do I activate this function?
    I already call the functions get_layout() and set_key() - so that shouldn't be the problem. Or is just not possible to use CL_SALV_TREE on a custom container and have the possibility to store layouts?
    Kind regards, Lars

    Hello,
    I'd like to use an object of type CL_SALV_TREE, that is placed on a custom container (and therefore not displayed in fullscreen).
    But how do I get the functionality to store a layout, when using CL_SALV_TREE not in fullscreen mode? If you use it in fullscreen mode, you just have to define the function code in your gui status and everything is ok.
    But since I want to place my CL_SALV_TREE on a custom container, that method does not work. If I call <my_salv_tree>->get_functions( ) it returns a table, that holds just six entries. So, the appropiate function for storing a layout does not seem to be in the default set of functions, when using CL_SALV_TREE with a custom container. But how do I activate this function?
    I already call the functions get_layout() and set_key() - so that shouldn't be the problem. Or is just not possible to use CL_SALV_TREE on a custom container and have the possibility to store layouts?
    Kind regards, Lars

  • How to view windows Xp formatted hard drive with Macbook pro without losing data

    How to view Windows Xp programed Hard drive with Macbook pro with out losing data on hardrive

    Go to the First Aid tab in Disk Utility, select the external drive partition and read the format from the lower left, at the bottom.

  • APD using Query with multiple structures as a data source

    All,
    I want to set up an automatic process which executes a query and exports it to a shared drive as a csv file. I have tried various options , when I try to use APD to set up the extract, I get an error and this is because the query that I am trying to use has Strucutres in both rows and columns. Hence, I am unable to use this option. I tried RSCRM_BAPI, It works well, but there is an issue with scheduling this in Process chain. I created an event and scheduled this as a job to trigger after "event" as per SAP instructions, but the job does not exist and it is not possible to trigger it through the Process chain unless the variables are hard coded in the query which I do not want to do.
    Can any one tell me if there is a way to deal with APD using Query with multiple structures?
    Would really appreciate if some one can give me the right solution...
    Thanks

    Hi Tanu ,
    APD is an option but its not very good with large amount of data or hiearachies or if you have attributes in you query structure .
    One more option for this requirement is use of report program using function module RRW3_GET_QUERY_VIEW_DATA .
    This will work fine with multiple structure etc .
    There are some overheads with this FM  ex: if amount of data is too much then program will give dump .Solution for that is we call the FM in LOOP by diving amount of data need to be fetched .ex:  we can read data quarter wise.
    For using this function module what you can do is write an ABAP program (At SE38 ) .which will call this FM and then write the output into a flat file which you can save at application server (AL11) .From there other system can read it .
    To automate this whole process you can further add all the report programs into a process chain (RSPC) which can be schedule as per requirement .
    To pass input parameters you can use variants that will pass the values to the report .
    Check thi link for sample code :
    [http://www.tricktresor.de/content/index.php?navID=696&aID=496]
    Hope this will be helpful .
    Regards,
    Jaya Tiwari

  • How to plot semi log graph?

    I am dealing with circuit in which resistance is automatically varying(IC AD633).I want to plot graph of Voltage against this variable resistance.Also as the  range of variation is very large I want to use semi log graph.Is it possible in Multisim? Please reply as soon as possible.

    Hello,
    In the Grapher View you can configure scale, range, etc. Double-click the Grapher View area to open its Properties. There, you can configure the Left/Right axis and the Top/Bottom axis. For example, you can select a Linear scale for the bottom axis and a Logarithmic scale for the left axis to create a semi-log graph.
    Regards,
    Fernando D.
    National Instruments

Maybe you are looking for

  • I'm at a complete loss...

    I'm using Windows 7.  Recently installed 11 and seemed to have lost all my audiobooks and hated the new format.  So, I decided to revert back to an older version. I unistalled itunes and reinstalled 10.7 but then all my books were gone.  I called car

  • Statistical Delivery

    Dear Sirs, I am raising a third party purchase order.  During MIGO where can I find the statistical delivery indicator. Thanks Viral Bhinde

  • Message no. VF062

    Dears I got strange error. for my history invoice (Billing), normally, when i use VF03 /VF02 to display the document, then i click accounting documents, i could get 3 type documents, accounting documents, profit document and controlling document, but

  • Can R/3 4.6B run in V5R4?

    I have a customer who still wants to run R/3 4.6B in V5R4 now and upgrade 4.6B to 4.7 next year. I could not find information that this is possible or supported.  I figure that if R/3 4.6B can run over 4.6D Kernel, then it should be OK running in V5R

  • Maintaining Stock Availibility : physical table or materialized view  ?

    Hi All, We have typical Order processing application where I should maintain stock availibility => Order is rejected if Stock is not available. The number of orders is 1000 perday, 22 branch, using VPD. 10 users each branch. We are really tempted to