How to plot a olap time in graph in wad

hi all
i want to design technical content queries in wad but facing problem in ploting time in x or y axis.i tried all option but it is not working out..
i am using time scatter graph..
thanks
shalini

Hi DFGray.
Thanks for your post.
If you look at the attached file, how do I make the changes that you describes. Maybe you could make the changes in the vi and post it to me?
I just think that I have be done all the things that you suggests but still I can't make it work. 
 - Clausny
Attachments:
starttimeVI.vi ‏27 KB

Similar Messages

  • How to plot this into a line graph?

    Hi,
    I just found out that my breakeven point in sales turnover is $132,837. But how would I plot that into Illustrator's line graph?
    breakeven1.jpg: It's breakeven point is $7,956.
    breakeven2.jpg: I'm probably doing it wrong. Do I really need to define both axises like that?
    Thanks!

    A more interesting question is: Must you use a chart at all to present such a simple fact? No offense, they tear such stuff to pieces over at Junk Charts and Mr. Tufte would call it a Duck. If you insist on using a chart, a differential bar chart or a range chart would be much more appropriate and telling.
    Mylenium

  • How to plot contour using time stamp

    Hello,
    I need help on the following:
    I acquire size distribution data each minute from a particle counter. I would like to plot the data as a contour plot using time stamp on the x-axis, the size bins on the y-axis and the 2D data on the z-axis. I cannot get the contour functionality in LV 2011 to accept the time stamp format. I did change the format of the x-axis to "absolute time" but it still doesn't work, see simplified diagram below.
    Any advice on reformatting a time stamp to something the contour plot understands??!?
    Thanks a lot,
    Claus
    Attachments:
    countour.png ‏20 KB

    Milan R wrote:
    Hi Mogensen!
    You could use the "To Double Precision Float" vi to convert the timestamp to a double prescion number as mentioned in this forum post "time stamp to number function". As mentioned in that forum, the number is based on the LabVIEW epoch date so you can use it to compare values taken at a specific time.
    I can't look right now but will that work?
    I thought the 3D stuff was single and the magnitude of the time stamp would swamp the difference in time stamps.
    Just thinking out loud.
    Ben
    Ben Rayner
    I am currently active on.. MainStream Preppers
    Rayner's Ridge is under construction

  • How to plot sale over time?

    I have a spreadsheet that lists various sales. One column (Column B) contains the time of day of the sale. I'm trying to create a chart that will show me the time of day that my sales are occurring. I'm not concerned about the date as I'm already tracking that somewhere else. I just want to see what time of day my sales are happening. I'm really stumped as to how to make this happen. I'm not even sure what kind of chart I need.
    The cells are formatted like so: 06/03/00002010 8:17:47 AM
    The beginning date needs to get ignored as that's the date that the report was run. It's not actually related to the sale at all. I just need to capture the time. Any thoughts on this?
    Message was edited by: stvelucky

    If I'm reading your question correctly, you need to start by separating your data into parts of day.
    Here's an example that separates the numbers into columns by half hour periods, then sums the results in a footer row (row 30).
    The active formula in E2 is shown at the top. The formula is filled down to row 29 and right to column G. Column B here is formatted to show both the date and time parts of the 'time' in the cells. Dates have been edited in rows 9 through 14 to demonstrate that the formula disregards the date portion of the entry.
    The summary data in the footer row may be used for the chart.
    Regards,
    Barry

  • How to plot power factor as a graph?

    Well guys, I have an array with power factor values and I need to plot this in a graph.
    My problem is because as you know, power factor has positive and negative values so when I plot I need to change my scale to get a better visual.
    I was thinking about:
    0
    0,2
    0,4
    0,6
    0,8
    1
    -0,8
    -0,6
    -0,4
    -0,2
    0
    Anyone have a graph or a code that make its? Because I already tryed here a lot but never get a good solution
    and I think this isn't that difficult! Thanks!

    Hi EduU,
    you can find your own threads by searching in your profile (just click your name) Or you could use the search function to look for "power factor graph"...
    There were other possible solutions than mine, also without separating the values...
    Message Edited by GerdW on 06-01-2010 03:18 PM
    Best regards,
    GerdW
    CLAD, using 2009SP1 + LV2011SP1 + LV2014SP1 on WinXP+Win7+cRIO
    Kudos are welcome

  • How to plot 3D graph

    I try to plot data like this picture attached . is there anyone who know how to plot three axis on same graph  .  And point of Three peak value is marked as point.
    Help me. is it possible in labview? See JPG file
    Attachments:
    SDC11183.JPG ‏2664 KB

    Duplicate
    Just stick to one thread and be patient - someone will be able to help, but the vast majority of people here are unpaid volunteers.
    -CC
    "If anyone needs me, I'll be in the Angry Dome!"

  • How to plot y=mx+c

    Hi,
    I'm trying to complete a line of best fit generator for a university assignment.
    I realise LabView already has the ability to plot it for me, but my assignment requires me to do it myself with my own code.
    The problem I am stuck on right now is how to plot a straight line on a graph; given y, m and x.
    I have a graph, and I have the code to calculate the y, m and x of my line, but I cant understand how to plot this line on my graph.
    I'm sorry this is such a mundane problem, but I've been looking for days now and I still can't find how, and I must be thinking about it entirely the wrong way.
    Attached is a quick screenshot and my VI if it helps. Also attached is a portion of the document I'm following that my professor made to help me.
    Thank you in advance, you clever people

    The main problem is that your document is wrong. The sums actually need to be taken from i=0 to i=N-1 (The document says i=1 to i=N-1, which is incorrect).
    You need to make the VI scalable, so the code works no matter how many points there are in the input arrays. You don't want to write different subVIs for each array size, right? Also remember that "index array" is resizable, so would only need one instance to get all elements.
    As Tim said, you can get N for each array by using "array size" (you might even include error handling and return an error if the X and Y arrays are of different size or if both are size=0, for example.). The rest of the code can be done by operating directly on arrays.
    Yes, as you pointed out, there is a linear fit built into LabVIEW. I would still place it on the diagram, just to see if your own code returns about the same results. Two opinions are better than one! (most likely they will not be identical to the last bit, but that is to be expected).
    Before saving an example VI, you should fill the values from the document into the x and y arrays and make the values the default so you don't need to enter anything next time you work on the VI.
    And, yes follow your advisors suggestion and build the code into a subVI. I would recommend to use the same connector pattern as the built-in linear fit subVI, just leave out the stuff that you don't use.
    Here's one possibility how the flat code (not subVI yet) would look like. Study it in detail and make sure you understand every single part of it, then do your own. Good luck!
     

  • 3D real time voltage graph

    Hi I'm a beginner at Labview.
    I'd like to plot a real time contour graph from voltage readings from 4 diodes which is obtained via the DAQ. The x-y coordinates are the coordinates of the locations of the diodes while the z coordinate is the (current) voltage measurement of each diode.
    I've already splitted up my location coordinates into x-vector and y-vector. I've tried to wire my latest readings values into the z matrix, however I received an error about the different data types.
    Any idea how can I plot a 3D real time contour graph?
    Ps. With the exception of the 3D graph, everything else works prefectly.
    Attachments:
    voltage array 2 - Copy.vi ‏122 KB

    jsp6 wrote:
    Hello,
    I'm trying to view the voltage measurements in real-time chart. (Labview2012 and I've connected 2400 sourcemeter with my laptop by using GPIB-USB-HS)
    My question is, how can I increase the chart update rate? Say, how can I increase samples/second rate?
    Here is the screenshot of my chart -> . Its update rate is quite slow and I dont know why the voltage measurement takes time to settle back 0V (notice the descending slop after the voltage pulse).
    I'm using labview to measure a voltage pulses. So I need fast-response chart that looks like this -> .
    I'm very new to Labview. Please help 
    I'm attaching the vi
    Are you sure they're the same timescale?  The LabVIEW shot sure looks like a time-stretched version of the display photo...
    Bill
    (Mid-Level minion.)
    My support system ensures that I don't look totally incompetent.
    Proud to say that I've progressed beyond knowing just enough to be dangerous. I now know enough to know that I have no clue about anything at all.

  • How to add Diagonal Axis on 2D graph

    I try to plot data like this picture attached . is there anyone who know how to plot three axis on same graph  . Here, Axis is added diagonally. and point of Three peak value is marked as point.
    Help me. is it possible in labview? See JPG file .
    Attachments:
    SDC11183.JPG ‏2664 KB

    Hi Wenjun,
    Thank you for the idea.
    Is there any way to display label for only one measure out of two measures defined?
    Thanks & Regards,
    Pruthvi G N.

  • How to plot with multi colors in a single XY graph?

    Hi,
      I'm making hesteresis measurements. In this case, I collect data while sweeping voltage first from 0 to 2V, and then back from 2V to 0V, and the data are plotted in a single XY graph. In the XY graph, I want forward sweep plot of one color while the reverse sweep with another color so I can easily make comparisons. And I want to see the data real time. I tried to wire "plot color" in "property node", but this will change the color globally and can not be applied to a section of data. Can anyone advise me how to do this? Thanks!
    Guanglei 
    Solved!
    Go to Solution.

    Hi Graham,
      Thank you very much for the reply, I really appreciate it.
      However I don't quite understand your descripton. Yes I do spit my data in two arrays, one for forward sweep, and the other for reverse sweep. I can plot with different colors in XY graph by appending several XY graphs into one, but by doing this I can not see the data real time. I quickly made a vi to demonstrate my problem,  hope this will give you a better understanding. Thanks. 
    Guanglei
    Attachments:
    demo_GL.vi ‏108 KB

  • How plot Current VS Voltage (XY graph??)

    Hello,
    I obtain current and voltage by analog inputs of an USB 6009, and I need to plot it in the same graph (C vs V).
    Please help me, it is very important to finish my proyect.
    I attachment a sample of the graph that I want.
    Thanks
    Attachments:
    XY deseado.jpg ‏31 KB

    [email protected] wrote:
    Can anyone  tell me how to plot a graph in labview with any other parameter other than time on x-axis. I am not able to plot v versus i graph, as I guessed it is only able to plot v versus time and i versus time! 
    You can edit the label of the x axis to say anything you want. The string "time" is only the default label. If the X values are equally spaced, all you need is define x0 and dx for a plain waveform graph. If the x values are not equally spaced, you need an xy graph.
    You really need to be a bit more clear explaining what you want. Attach your code and some typical data. Show us what you get and explain what you want instead.
    All this is well defined. No guessing needed (especially if your guess is wrong!).
    LabVIEW Champion . Do more with less code and in less time .

  • How do I add moving averages to my time series graph is there a function on numbers on tr iMac?

    I've created a time series graph on numbers on my iMac but I need to add moving averages. Is there a function an if so where is it and if not is there a way to get around it

    Badunit,
    Here is an example plot, data sorted from most recent data at top of the table...
    You can see the moving average (of 20) is plotted from right to left.
    The Moving Average calculation is now wrong, and should have been calculated and presented from oldest to most recent.
    Here is the same data, with table sorted from oldest data at the top of the table.
    The moving average is also plotted from right to left, and shows the correct Moving Average for the most recent data.
    That is, it is calculated from oldest to most recent, with the last Moving Average data point plotted on "todays" date.
    What I want to see is my table displayed from most recent at the top (the top table), and moving average calculated and displayed as per the bottom graph.
    Edit: So, think about this some more,
    I need an option to tell Numbers to do the Moving Average calculation from the bottom of the table up, not from the top of the table down.

  • How to  plot a graph in JSP

    How to plot a graph in JSP

    Hi!
    You can use jfreechart.
    It is a good tool and if you search on Google you can find more info and more web examples (files, .war, ...)
    Bye.

  • How to decrease the OLAP/DB and Frontend time of query

    Hi,
    While  I am excuiting the query, it takes time to dispaly the query output. Reason behind is it have the high OLAP/DB and Front end time.
    Can anyone help me how to decrease the OLAP/DB and Front end time.
    Regards,

    Probably Existing Aggregates are not useful .. you can edit them based on below factors
    You can also check ST03N - > BI Workload - > select Weekly/Monthly - >Choose All data tab - >dbl click on Infocube - > choose query - > check the DB time % > 30% and Aggregation ratio is > 10 % then create aggregates.
    Now goto RSRT choose query - > Execute debug mode - > check 'Display Aggr found' and choose 'Display Stats' -> now you can check records selected Vs records transferred in % .. it should be > 10 % .. That means the query is fetching records from Aggrs which will also improve query performance!
    Also check RSRT - Execute in Debug and choose display aggregates found.. If it found aggregates then the query is using/fetching data from aggr's
    Edited by: Srinivas on Sep 14, 2010 3:40 PM

  • How to plot waterfall graph in vb6.Attach​ed sample graph for your reference.

    Thanks John for your answer. Attached file the sample graph what i really want to plot it.Any body can help me.Thanks.
    Attachments:
    waterfall.gif ‏81 KB

    Hello asrol,
    Please try to post replies under the same thread so that it is easier for everyone to keep track of your issue. Thanks!
    Original thread: How to plot waterfall graph in vb6 from offline data
    John B.
    Applications Engineer
    National Instruments

Maybe you are looking for

  • Apple Store Refuses to Diagnose Hardware Issue after Boot Camp Installed

    I previously reported an issue in the Boot Camp Beta forum, but figured I share this with other MBP users as well. After loading the updated firmware, running boot camp to partion my drive, I installed Windows XP Professional. During the install, the

  • Error 'Express document "update was terminated" from the author'.

    Dear All,   I have created a delivery doc(PGI) with ref to sales doc, it gave the   del doc no. while creating billing do with ref to this del doc I am getting   an error " update was terminated". when I cheched Vlo2n it says that the doc does not ex

  • Windows 7 devices and printers not showing

    The ultimate fix was when MS Support advised be to go to services.msc and start Bluetooth services (and set it to automatic) -- I did, rebooted and the Windows 7 Pro Devices and Printers once again showed up! Not sure why Bluetooh services would caus

  • Drag and drop to bookmarks toolbar in ff 4?

    In FF3 i could drag a url from the location bar onto the bookmarks toolbar to have it create a bookmark, but in FF4 I can no longer do this. Is there some hidden option to turn this back on or is it permanently disabled?

  • WLC 5508 tunneling issue

    Hi, I have a WLC 5508 connected in a hub and spoke topology. The WLC is located at the hub which is the main office. In one of the remote spoke locations I have five Access Points that are connected to the local LAN and the model for the APs is AIR-C