Web-based data visualization tools

Hi.  I originally posted this question to the LV forum, but I am going to modify my question because I think Diadem may be a good solution for us.
I am embarking on a interesting research project that will involve recording lots of physiological signals from patient monitors in a hospital.  I will be recording signals like BP, spO2, Pulserate, ECG, etc.
Right now, my main design concern is how to give clinicians access to the data after it is recorded.  I think Diadem might be a good solution, but I really want it to be web-based.
Here is my wish list:
- Store the data securely, where access can be restricted and controlled (e.g. user must login)
- Allow users (who are granted access) to login and view historical data via a simple web browser
- Allow users to pick datasets amd zoom, scroll, etc. 
- Allow user to view data in stacked plots (e.g. so they can see multiple signals simultaneously on the screen and scroll the time axis)
- Allow user to annotate data (e.g. add comments at specific timestamps)
Do you have any reccomendations for a web-based data visualization tool like this?  Do you think Diadem meet my needs?

Hello J Osborne,
You application sounds like a great fit for DIAdem and the DataFinder, with the exception of the Web-based nature of the application. We currently do not offer a native web interface to DIAdem and it's features, but there are ways to accomplish that using established technologies such as remote clients ...
Here are my comments to your individual questions:
- Store the data securely, where access can be restricted and controlled (e.g. user must login)
* The DataFinder Server (which works with DIAdem) technology can be used to give specific users access to only data they are supposed to see, so we can cover this part of your application
- Allow users (who are granted access) to login and view historical data via a simple web browser
* This would have to be achieved via a remote client solution, since DIAdem offers no native Web client
- Allow users to pick datasets amd zoom, scroll, etc. 
* This is something that the DIAdem NAVIGATOR and DIAdem VIEW are very good at, including the ability to search for data sets based on specific key words, patient names, etc. and the ability to look at multiple data sets simultaneously in multiple windows with zooming and scrolling.
- Allow user to view data in stacked plots (e.g. so they can see multiple signals simultaneously on the screen and scroll the time axis)
* That's DIAdem VIEW, sounds like a perfect fit: http://zone.ni.com/devzone/cda/tut/p/id/7384
- Allow user to annotate data (e.g. add comments at specific timestamps)
* DIAdem VIEW has the ability to highlight events with cursors, and we could easily add the ability to add comments through a custom dialog and a short script. We could prepare and demo this feature for you ...
I would be happy to discuss your application with you in more detail. Feel free to contact me at (800) 531-5066 (ask for Otmar Foehner) or via email at    otmar DOT foehner AT ni DOT com.
Otmar D. Foehner
Business Development Manager
DIAdem and Test Data Management
National Instruments
Austin, TX - USA
"For an optimist the glass is half full, for a pessimist it's half empty, and for an engineer is twice bigger than necessary."

Similar Messages

  • Reccomendations for web-based data visualization tools?

    Hello again,
    I am embarking on a interesting research project that will involve recording lots of physiological signals from patient monitors in a hospital.  I will be recording signals like BP, spO2, Pulserate, ECG, etc.
    Right now, my main design concern is how to give clinicians access to the data after it is recorded.
    My wish list is:
    - Store the data securely, where access can be controlled (e.g. perhaps in a RDBMS like SQL Server)
    - Allow users (who are granted access) to login and view historical data via a simple web browser
    - Allow users to zoom, scroll, etc. 
    - Allow user to view data in stacked plots (e.g. so they can see ECG, BP and HR simultaneously on the screen and scroll the time axis)
    - Allow user to annotate data (e.g. add comments at specific timestamps)
    Anybody have any reccomendations for a web-based data visualization tool like this?
    I know that people are probably going to reccomend Diadem ... but I don't think its web-based is it?

    There is actually a new thing available called LabVIEW Web UI Builder.  This allows you develop web-based applications that have a custom GUI that can interface with other LabVIEW applications.  You can find more information on the Web UI Builder page on ni.com. There is also a dedicated forum that you can use to post questions about the Web UI Builder.  That forum is located here.  I hope that you find this helpful!
    Brandon Treece
    Applications Engineer
    National Instruments

  • I need  Web based Dynamic Reporting tools

    Hi,
    I need a Web based Dynamic Reporting tool.
    I have to user oracle products and this reporting tools must support OLAP and Data Warehousing.
    thanks,

    Hi Shima,
    Let me quote from Oracle Reports website:
    "Oracle Reports is Oracle's award-winning, high-fidelity enterprise reporting tool. It enables businesses to give immediate access to information to all levels within and outside of the organization in an unrivaled scalable and secure environment. Oracle Reports consists of Oracle Reports Developer (a component of the Oracle Developer Suite) and OracleAS Reports Services (a component of the Oracle Application Server)."
    Since you need a web-based reporting tool, this is what is available with Oracle Reports:- you cannot design reports on the web, but you can use Oracle Reports Developer to design high quality reports that are suitable for viewing on the web.
    Oracle Reports support OLAP as a data source.
    From your requirements, it seems that it might be worthwhile for you to check out Oracle Discoverer which is again a powerful reporting and analysis tool. Oracle Discoverer is more suitable for ad-hoc reporting and web-based analysis of data by the end-users:
    http://www.oracle.com/technology/products/discoverer/index.html
    Navneet.

  • Free web-based Oracle administration tool

    Is there a free web-based Oracle Administration tool? Oracle SQL Developer is a free tool but not web-based. There are many web-based Shareware Oracle administration tools but I could not find a free tool. If anyone knows anything about it, please let me know.
    Thank You for your help in advance!

    Are you referring to the extra features or options provided by licensing Management Packs? (note that EE is needed before you may add the licenses)
    http://download.oracle.com/docs/cd/B19306_01/license.102/b14199/options.htm#sthref69
    http://download.oracle.com/docs/cd/B19306_01/license.102/b40010/overview.htm

  • Applet-Servlet with RMI or HTTP? : for a web based network monitoring tool.

    Hi,
    I need help to make a decision to choose an implementation technique for a tool that I am creating.
    I am creating a utility to display a table of RX and TX bandwidth information in real time from a network device X
    onto a client's web browser.
    I have a JTable based applet to display bandwidth information. However I am running this as a standalone applet. I want
    to create a web based solution (applet/servlet model) to make life easier for the end user.
    As for displaying the bandwidth information, I am using Runtime.exec() function to remote execute commands using ssh/rsh.
    This not only seems to impose a lot of process and network latency overhead, but also seems impractical from a
    security point of view, hence I need a real client/server model to have efficient and secure serialized data transfer across
    the network (through HTTP etc) between the client's web browser and X.
    X has a web server running on it. It essentially is a Linux box (CentOS). I can create a JNLP definition to launch an applet
    from X onto a remote client's web browser. The real problem is: what is the most efficient way to go about the
    servlet implementation? Is it wise to use HTTP get/post? or RMI is the way to go?
    Also I'd appreciate suggestion on any different approaches than what I have in mind above.
    Thanks,
    Rajiv

    Thanks for your time, but I cannot make a front-end in C. It has to be in JSP (or in ASP but I haven't tried yet to program in VBA).
    So that is why I am asking what is the best way of attaching a JSP front-end to the given API.
    PS: Why should I code a .dll to provide a JNI interface for the api? Isn't the JNI interface capable of doing such?

  • Web-based user management tools???

    Are there any pre-packaged or off-the-shelf tools one can use to manage unix users and groups in DS 5.2? (preferrably web based) I have found a few open source apps that are web-based but they don't seem to be production quality.
    For now, I'm creating LDIF files and importing them or using the GUI console. This is tedius and the other sys admins that aren't familiar with ldap will find it difficult.
    One of the open source tools I found was "Directory Administrator" which runs only under gnome, we don't use gnome.
    Another tool is "LDAP Account Manager" which was originally built to manage samba users and their unix user/group attributes. We don't use samba and this application does not allow you to seperate the samba and unix components.
    There has to be a simple web-based tool for managing unix users/groups. If any of you know of a commercial or free app, please let me know.

    I urege to to take a look at phpldapadmin, an open-source php/web based tool for managing ldap/directory servers. We have been using it for over a year now, and find that it is easy to install, works well, and continues to receive updates on a periodic basis. Another nice thing is that since you have the php source, it's easy to modify for local modifications.
    You can find it at:
    http://phpldapadmin.sourceforge.net/

  • Web based data entry for BCS layout

    Dear Gurus,
    Please advice how to enter the data using web layouts into the BCS cube. I know that we cannot simply generate the layouts from BCS workbench like we can do using BPS0 for Business planning transactional cube, but I know that BCS also has this feature available to use web for entering transaction data.
    Please advice.
    Thanks
    Abhinav

    Hi Jide,
    BCS offers an own fexible upload which you could use for the non SAP companies, without BW ETL
    you can create a BCS task for the BCS Monitor where you can load flatfiles.
    check: http://help.sap.com/erp2005_ehp_02/helpdata/en/52/6d973bef5cf61de10000000a11402f/frameset.htm
    for the SAP companies you can use the "Load from datastream" to load data from a BW Infoprovider:
    check: http://help.sap.com/erp2005_ehp_02/helpdata/en/52/6d973bef5cf61de10000000a11402f/frameset.htm
    I hope this answer is helpfull for you.

  • Something about web based data bases?

    am doing work at oracle forms 6i and data base 9i at local data bases. now i want to build my skills in online data bases.plzz give me suggesstions from wut i start.wut are the options that i design my front end for online data bases .wut i can use forms for my front end or i will learn asp php etc .

    Huseyin,
    Regarding WD books:
    http://www.sap-press.com/ search for NetWeaver
    http://www.amazon.com/exec/obidos/tg/detail/-/1592290388/ref=pd_bbs_null_1/002-0578868-8131203?v=glance&s=books -- "Inside WebDynpro" (the best one)
    Regards,
    Valery Silaev
    EPAM Systems
    http://www.NetWeaverTeam.com/

  • Using Data Visualization tools?

    Hi,
    I am a ADF newbie. I am using JDeveloper 11g R2. I have the following use case based on HR schema.
    I want to produce a graph which shows the 5 highest salaries of employee table. How to achieve it?

    I was just asking if it is possible to create a graph for top 5 values of "Salary" without creating a separate view objectAnd I asked you to define what you mean by "top 5 values of Salary" - do you want 5 rows or do you want all rows matching the top 5 values for salary.
    At any rate, my answer would be "no" - you would generally need a separate VO to do this.

  • Any free coldusion based software deployment tools?

    Hi, i'm trying to find a web based software deployment tool, ideally written in coldfusion. Does anyone know of any?
    Thanks
    Z

    It's very easy with Time Machine (which is built into the OS).  Just turn on Time Machine in System Preferences, plug in an external hard drive, and you should be asked whether you want to use that drive for TM.  (Warning: this will erase the drive, so don't do this if there's data on the drive!)
    For more about backups, see my Mac Backup Guide, as well as Pondini's excellent Time Machine FAQ.
    (Note that my pages contain links to other pages that promote my services, and this should not be taken as an endorsement of my services by Apple.)

  • Browser is no longer recognized by a web-based database after migration to FF17

    Hi,
    When trying to access a web-based data base thta worked fine with FireFox 16, I now got message: "Your Browser is not supported" at the place where an image loaded via a plugin (ChemDraw plug-in 12.0.2.1076) should load. This worked perfectly with version 16 and the plugin is still in place and not declared incompatible by FireFox. How do I modify the way FireFox announces it-self to the web site so that it is not declared incompatible...

    Hi,
    I tried and it works ! What I had to do was to downgrade to version 16, install the add-on, copy the configuration from there as a new User agent (which I called FireFox 16), then upgrade and then select the FireFox 16 user agent...
    Amazingly enough, however, when checking the test (through the web site http://chrispederick.com/work/user-agent-switcher/features/test/ it says I have version 17 (Mozilla/5.0 (Windows NT 5.1; rv:17.0) Gecko/17.0 Firefox/17.0) aven though I selected my FireFox 16 (Mozilla/5.0 (Windows NT 5.1; rv:16.0) Gecko/20100101 Firefox/16.0).
    I do not knwo exactly why the test does not work but the web site that needs FireFox 16 works ...

  • Web based server admin

    Hi,
    Does anyone know of a web based server admin tool? I would like to be able to administrate website etc through a web portal instead of having to have server admin running. Anyone know of a tool?
    Thanks

    Check the webmin at http://www.webmin.com/.

  • How to have a web-based interface for Lumira that also performs Ad-Hoc visualizations on data that should be loaded live from HANA.

    How to have a web-based interface for Lumira that also performs Ad-Hoc visualizations on data that should be loaded live from HANA. I have another tool that puts data into HANA, So don't want to reload this new data into Lumira every time I want to run a report.
    so do i  have the ability to create polished ad hoc dashboards, reports, infographics and storyboards Apart from Ad-Hoc reports, I also need a dashboard with some fixed reports that update with the live data.
    So please suggest me to accomplish this task.
    Thanks and regards
    Shashi kiran

    Please have a look at Ludek's document here which contains links: SAP Lumira Family Supported Versions Matrix
    Ludek has also attached the PAM's as zipped files; Lumira comes in many flavors so I encourage you to research options
    Also see this "HANA Live" document: [SAP HANA Academy] Visualized: Lumira & HANA

  • Getting SQL*Net more data from client waits when running a query through web based interface

    Hi, you all,
    We are having this weird behavior when running query through web based interface, we get a lot of "SQL*Net more data from client" waits, the OEM indicates that the current wait event is SQL*Net more data from client
    It's just a very simple query wich invokes a db link.
    When I execute the same query on any PL/SQL tool like toad or sql developer it works fine, but that query inside an application executed through a web based interface, it hangs for ever.
    Where can I start looking for the problem.
    We are working on a 3 Node RAC 11gr2, both databases are on the same RAC.
    Thanks.

    Hi ,
    we managed to reproduce the case in test environment, below are the steps:
    1)have 2 databases on different machines, will call the first one local, the other one remote.
    2)in the local database create:
    a - DBLink to remote database.
    b - read data from remote database(we simply used select count(*) from dummy_table )
    c - insert data into a table on the local database
    d - terminate the connection between the 2 databases (disconnect either machine from the network)
    e - commit on local database.
    what we noticed was the following:
    1)when the local database is disconnected from the network(the machine is not connected to any network at the moment): almost immediately throws an error, and issuing the following:
    select * from dba_2pc_pending;we found some data .
    2) when the remote database was disconnected(the local database is still connected to the network):
    after 7-8 seconds an error is thrown, and issuing the following:
    select * from dba_2pc_pending;did not return any data.
    since this is pretty similar to our case ,we concluded that it's a network issue.
    is this the correct behavior ?
    as a temporary solution till the network issue is fixed ,we did the following:
    1) changed the call of the remote procedure to calling a local procedure that calls the remote procedure.
    2) added pragma autonomous_transaction to the local procedure.
    3) at the end of the local procedure rollback the autonomous transaction.
    it seems that since the global transaction does not use the DBLink database does not issue a 2PC commit.
    this works in my cases since the DBLink is only issed to read data.

  • Do we have a built-in option for web based tool in Nexus 5548UP switches for management purpose?

    I have purchased Nexus 5548UP switch, i want to know if we have a built-in option for web based tool to manage and configur it just as ASA have ASDM. If there is no such options then what are the options available that can be freely available and can be used to get performance monitoring done.
    Message was edited by: Praveen Varun

    DCNM (Data Center Network Manager) runs on a server (Windows, RHEL or Solaris) and can be used to manage Nexus devices. It's free for Nexus 1K through 5K devices (paid license required for Nexus 7K management).
    http://www.cisco.com/en/US/products/ps9369/index.html
    There is not a "built-in" management product like ASDM for ASA.

Maybe you are looking for

  • Qosmio G30 buzzes when connected to a Pa System

    I am using my Qosmio G30-201 laptop with my djing system. When I connect this to my mixer I get a loud buzzing sound coming through the speakers. If I disconnect the charger it stops buzzing. Is there anything I can do to stop this sound as I do need

  • IPhoto slideshow - how to mute all videos?

    Hi there I've put together an iPhoto 11 slideshow to be displayed during a party.  This includes photos and videos.  However, since this is really a background type thing, rather than the focus of the party, I don't want the audio from the videos to

  • My 10.6 Mac Pro makes the "bong" noise 3 or 4 times when starting now?

    I changed out my hard drive to a faster, larger hard drive. I restored my system to the new hard drive from time machine and now I get 3 to 4 "bong" sounds when the computer starts and the grey screen is up before the apple appears.

  • Jazn permissions

    can anyone tell me how i can retrieve user permissions for a given user using the jazn api. i am using the xml provider and have successfully added users, roles etc and have granted permissions to the roles using the jazn admin tool but am struggling

  • Can't boot from new ssd

    hi everyone, i installed a 128GB samsung 830 ssd in a hard drive caddy replacing the CD drive in my early 2011 macbook pro. when i try to install an operating system to the SSD it will refuse to boot.  it flashes between the apple logo and a circle w