User A will record his voice and i want to plot a graph according to his voice... is there any voice chart available...
I have use the Bass library from un4seen.com
http://www.un4seen.com/
they have an asp.net port.
Similar question: asp.net create waveform image from mp3
Related
In H2O Driverless AI, there is a feature in which after we upload a dataset, we can see visualization of the dataset in various plots. So is there a way I can share this graph to a different person in H2O Driverless AI, so that he/she can see the graph dynamically.
Please note that : I dont want to download the graphs, because if I do that, the graph will become static.
What I want is to share the graph to a different person so that he can view the live graph without giving my account credentials.
Is there any way to do this in H2O Driverless AI ?
Each user/account is separate so the dynamic graphs won't be shared. However, you could create a notebook and share that usugin the Python client to build the visualizations. Check out this example which uses Autoviz and Python client.
I'm trying to visualize GPS points on PowerBI maps offline and wonder what would be the best way to achieve that.
Ideally, I'd like to see the offline mapping to have the same effect as directly using the "Map" visualization - GPS points (in data as longitude and latitude columns) plotted on the Bing map. However, our team will need this function offline, because our users are usually under bad internet connections. Also we are wary about Bing's data sharing policy as our GPS information is highly confidential.
So far I've tried PowerBI's shape map function, which allows me to upload a TopoJSON file and use it offline. However, it looks like shape map is better used for highlighting a region on the map, instead of plotting individual GPS points - shape map doesn't seem to allow longitude/latitude. Besides that, shape map does not have as much information like Bing map, such as showing city/road names and etc.
Is there a way to visualize GPS points offline on PowerBI, but still get enough information about what are around the GPS points? I'm referring to PowerBI here but all things I've been doing are on PowerBI Desktop. I don't plan to publish on the web as this will be my company's internal tool. Thanks in advance!
The built-in mapping functions such as the Map visual powered by the Bing maps API and the Eris mapping do not have an offline mode. Both require an online connection. Depending on the level of detail that you require, I would suggest looking into an R or Python visual with one of the mapping libraries. Here are some examples of the R mapping libraries. But getting the map json files into Power BI will also be an issue and may not meet your requirements on the level of detail that you need.
Also we are wary about Bing's data sharing policy as our GPS information is highly confidential.
I wouldn't worry about it, Bing & Power BI mapping is used by a wide number of organisation including heath and military customers. Your confidential data is more at risk with some one copying your Power BI report and sticking it on a USB drive.
However, our team will need this function offline, because our users are usually under bad internet connections
I would try some other options for offline mapping, for example Google Maps has the ability to down load a section of the map for offline/bad connections. I've downloaded the whole UK and its about 100meg.
Hope that helps
I am looking for a feature in Apache JMeter. I need the equivalent feature that I use with MicroFocus LoadRunner called "User-Defined Data Point Graphs".
From LR User Guide
The User-Defined Data Point graphs display the values of user-defined data points. You define a
data point in your Vuser script by inserting an lr_user_data_point function at the appropriate place
In pratice I want to use "JSR223 PostProcessor" and via code add values to a time serie. This time serie will be plotted on time based graph. In LR with line of code
lr_user_data_point ("data_point_1",1);
The UI shows a new data serie on plot that can be used as additional report (generate plot, median, table, etc...).
Thanks
Vincenzo
No there is no such feature in JMeter.
You can request an enhancement but ensure you explain:
What is the aim of this feature ?
What benefits it brings
See:
https://jmeter.apache.org/issues.html
Edit on 3 august 2018:
In upcoming JMeter 5.0, it will be possible to graph over time custom variables. See https://bz.apache.org/bugzilla/show_bug.cgi?id=62166
at this point there are three possible solution:
Open a new feature request as suggested by #UBIKLOADPACK
Develop a JMeter plugins using TestBean framework as described into link
Export a time-series to Grafana (or similar) using BackEnd Listener
Regards
I'm building a website which records every order from user. I want to construct graphs such as pie chart, bar chart and etc... to display data. How can I do this in phoenix framework? any suggestions?
Phoenix is not what you're looking for. You want a graphics library like d3.js that allows the drawing of charts and data visualization in webpages.
Im on developing an application which shows a Region Map and the specific region blinks when the network is down for that area.
For example on the worldwide map, if India's network server is down , the application would highlight the India Map by highlighting it. How do i do this?
Any ideas please.. Its little urgent.
Take a look at http://code.google.com/apis/maps/documentation/javascript
Step by step tutorial: http://code.google.com/apis/maps/documentation/javascript/introduction.html
You will need to explore "Overlays"; you can draw polygons on map to emulate the required behavior