Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Flamegraph | 3,893 | 3 | 13 days ago | 23 | October 10, 2023 | 56 | apache-2.0 | Rust | ||
Easy flamegraphs for Rust projects and everything else, without Perl or pipes <3 | ||||||||||
Rust Smallvec | 1,124 | 5,035 | 1,394 | 19 days ago | 58 | November 09, 2023 | 33 | apache-2.0 | Rust | |
"Small vector" optimization for Rust: store up to a small number of items on the stack | ||||||||||
Skcrypter | 142 | 3 years ago | mit | C++ | ||||||
Compile-time, Usermode + Kernelmode, safe and lightweight string crypter library for C++11+ | ||||||||||
Fcore | 42 | 8 years ago | 45 | bsd-2-clause | Haskell | |||||
Research middleware compiler from System F-based languages to Java with the Imperative Functional Object encoding | ||||||||||
Tvm In Action | 31 | 6 years ago | mit | Jupyter Notebook | ||||||
TVM stack: exploring the incredible explosion of deep-learning frameworks and how to bring them together | ||||||||||
Charm | 27 | a month ago | 1 | other | Haskell | |||||
A [ functional stack ] based language. | ||||||||||
Sippet | 20 | 5 years ago | other | C++ | ||||||
C++ SIP stack based on Chromium source code | ||||||||||
Antaresviz | 20 | 2 months ago | 39 | R | ||||||
ANTARES Visualizations | ||||||||||
Crazyflie_nmpc | 19 | 2 years ago | other | C++ | ||||||
ROS stack with an efficient real-time NMPC for the Crazyflie 2.1 | ||||||||||
Small_vector | 16 | 3 years ago | 3 | C++ | ||||||
"Small Vector" optimization for Modern C++: store up to a small number of items on the stack |
antaresViz
is the package to visualize the results of your Antares simulations that you have imported in the R session with packageantaresRead
. It provides some functions that generate interactive visualisations. Moreover, by default, these functions launch a shiny widget that provides some controls to dynamically choose what data is displayed in the graphics.
You can install stable version from CRAN with:
install.packages("antaresViz")
To install the last development version:
devtools::install_github("rte-antares-rpackage/antaresViz")
To display the help of the package and see all the functions it provides, use:
help(package="antaresViz")
antaresViz
provides a plot method for tables generated with antaresRead
. This method is for visualizing a single variable in different formats (times series, barplot, monotone, distribution and cumulative distribution). For instance, the following code displays the distribution of marginal price in different areas.
mydata <- readAntares(areas = "all")
plot(mydata, variable = "MRG. PRICE")
For more information, run:
?plot.antaresDataTable
Function prodStack
generates a production stack for a set of areas. Different stacks have been defined. One can see their definition with command productionStackAliases()
.
With function exchangesStack
, one can visualize the evolution and origin/destination of imports and exports for a given area.
The construction of maps first requires to associate geographic coordinates to the areas of a study. antaresViz provides function mapLayout
to do interactively this association.
# Get the coordinates of the areas as they have been placed in the antaresSoftware
layout <- readLayout()
# Associate geographical coordinates
myMapLayout <- mapLayout(layout)
# This mapping should be done once and the result be saved on disk.
save(myMapLayout, file = "myMapLayout.rda")
Then map can be generated with function plotMap
:
myData <- readAntares(areas = "all", links = "all")
plotMap(myData, myMapLayout)
You can use spMaps
to set a map background or download some files at https://gadm.org/download_country_v3.html.
Contributions to the library are welcome and can be submitted in the form of pull requests to this repository.
Antares is a powerful software developed by RTE to simulate and study electric power systems (more information about Antares here : https://antares-simulator.org/).
ANTARES is now an open-source project (since 2018), you can download the sources here if you want to use this package.
Copyright 2015-2016 RTE (France)
This Source Code is subject to the terms of the GNU General Public License, version 2 or any higher version. If a copy of the GPL-v2 was not distributed with this file, You can obtain one at https://www.gnu.org/licenses/old-licenses/gpl-2.0.en.html.