Posts

Showing posts with the label plot

How to plot a performance/ rate graph ? in r

Image
How to plot a performance/ rate graph ? in r I am trying to plot a graph depicting the performance of the best selling items, moderate selling items and the least selling items and they show which particular brand they belong to and their respective sub_category + category Raw Data : sraw <- structure(list(Date = c("2018-02-28", "2018-02-28", "2018-02-28", "2018-02-28", "2018-02-28", "2018-02-28"), Category = c("Bakery ", "Household ", "Household ", "Personal care", "Personal care", "Breakfast "), Sub_Category = c("Wafers ", "laundry ", "Pet Care", "Womens grooming ", "Womens grooming ", "Instant food"), Product = c("strawbery", "washing powder ", "Cat food ", "sanitary pad ", "sanitary pad ", "Noodles "), Brand = c("NO BRAND", "whe...

Plots with many data points in JS

Plots with many data points in JS I am building a dashboard using JS, that will show users plots of their sales data. Can you suggest a js library, which: Many thanks for any help! I uses chartJS for charts. I think there will be a wrapper for react too. – Chamara Abeysekara Jun 29 at 9:13 1 Answer 1 There's probably many options but one could be Victory Chart. The library is built on top of D3.js and is heavily customizable. For your large dataset, I can think of one solution I used that is documented here. One reason I'd suggest Victory is because they have a nice support community here. I read many blog posts about that topic, here's one that compares a few "big" chart libraries with React Components. For time series, I'd su...