Andrea Ferretti

Results 160 comments of Andrea Ferretti

Just in case, now there is no need for grunt anymore. Just `npm install`, `npm run build`, `npm run test`

Well, what I usually do is insert the whole tree inside a `g` element with the `transform=rotate(90)` attribute. This has the unfortunate effect of rotating labels as well, but you...

You are right. For now, let me offer two suggestions: * For Pie and Radar charts, there is no need to have an `offset` parameter, since there is `center` which...

The nice thing about SVG it that it supports arbitrary affine transformations. In particular, you can add the attribute `transform=rotate(90)` to a whole `` element to make a vertical bar...

Sorry it took a while, I am just now revisting old issues. I added a [quick test](https://github.com/andreaferretti/paths-js/blob/master/test/bar.js#L53-L61) but I do not see anything particularly strange, can you describe the issue...

Thank you for the report! Actually, I really need to improve the force-directed graph. Right now, it is merely a toy, and it is the only chart that I do...

Hi @t-ricci-enhancers , in fact there are Scala JS bindings [here](https://github.com/andreaferretti/paths-scala-js), so the library is fully typed. The type system for Scala JS and Typescript are not the same, but...

As I mentioned, I did the work for Scala JS, coming with definitions like [this simple one](https://github.com/andreaferretti/paths-scala-js/blob/master/src/main/scala/paths/low/Path.scala) or [this more compelx one](https://github.com/andreaferretti/paths-scala-js/blob/master/src/main/scala/paths/high/Sankey.scala) You can take inspiration from there (or at...

For image generation, also consider [LPIPS](https://github.com/richzhang/PerceptualSimilarity) as well as unpaired metrics such as [NIQE](https://it.mathworks.com/help/images/ref/niqe.html), [PIQE](https://it.mathworks.com/help/images/ref/piqe.html), [Brisque](https://it.mathworks.com/help/images/ref/brisque.html), [SR-Metric](https://github.com/chaoma99/sr-metric)

The syntax I am using is the simplest one I was able to make work with macros. :-) For instance the reason I introduced `variantp` is that I was not...