Skip to main content
  • Home
  • Development
  • Documentation
  • Donate
  • Operational login
  • Browse the archive

swh logo
SoftwareHeritage
Software
Heritage
Archive
Features
  • Search

  • Downloads

  • Save code now

  • Add forge now

  • Help

https://github.com/javierbarbero/DataEnvelopmentAnalysis.jl
03 May 2025, 08:09:18 UTC
  • Code
  • Branches (4)
  • Releases (20)
  • Visits
    • Branches
    • Releases
    • HEAD
    • refs/heads/gh-pages
    • refs/heads/master
    • refs/heads/pr/10
    • refs/tags/v0.1.0
    • v0.9.1
    • v0.9.0
    • v0.8.2
    • v0.8.1
    • v0.8.0
    • v0.7.3
    • v0.7.2
    • v0.7.1
    • v0.7.0
    • v0.6.1
    • v0.6.0
    • v0.5.2
    • v0.5.1
    • v0.5.0
    • v0.4.0
    • v0.3.1
    • v0.3.0
    • v0.2.0
    • v0.1.2
    • v0.1.1
  • 4eb9623
  • /
  • docs
  • /
  • make.jl
Raw File Download
Take a new snapshot of a software origin

If the archived software origin currently browsed is not synchronized with its upstream version (for instance when new commits have been issued), you can explicitly request Software Heritage to take a new snapshot of it.

Use the form below to proceed. Once a request has been submitted and accepted, it will be processed as soon as possible. You can then check its processing state by visiting this dedicated page.
swh spinner

Processing "take a new snapshot" request ...

Permalinks

To reference or cite the objects present in the Software Heritage archive, permalinks based on SoftWare Hash IDentifiers (SWHIDs) must be used.
Select below a type of object currently browsed in order to display its associated SWHID and permalink.

  • content
  • directory
  • revision
  • snapshot
  • release
origin badgecontent badge Iframe embedding
swh:1:cnt:1a97814b360adc270752e51a0930adbb077c29c9
origin badgedirectory badge Iframe embedding
swh:1:dir:4247aa87b7adffbf0e50d3847601df8756472f17
origin badgerevision badge
swh:1:rev:a9ad709c106fcaa6c21d03edad7c83fa02a3fbf0
origin badgesnapshot badge
swh:1:snp:128c19950a69538c4c30ad6993032b36a5d19cc0
origin badgerelease badge
swh:1:rel:0cd30bc91d98a3a47c40e9caa370e484e9b38b7a
Citations

This interface enables to generate software citations, provided that the root directory of browsed objects contains a citation.cff or codemeta.json file.
Select below a type of object currently browsed in order to generate citations for them.

  • content
  • directory
  • revision
  • snapshot
  • release
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Generate software citation in BibTex format (requires biblatex-software package)
Generating citation ...
Tip revision: a9ad709c106fcaa6c21d03edad7c83fa02a3fbf0 authored by Javier Barbero on 14 September 2022, 17:40:23 UTC
Version 0.8.0
Tip revision: a9ad709
make.jl
using Documenter, DataEnvelopmentAnalysis

# Solve nonlinear problem to display Ipopt initial message
begin
        X = [1; 2; 3];
        Y = [1; 1; 1];
        deagdf(X, Y, alpha = 0.5, rts = :VRS)
end
    
DocMeta.setdocmeta!(DataEnvelopmentAnalysis, :DocTestSetup, :(using DataEnvelopmentAnalysis); recursive=true)

makedocs(sitename = "DataEnvelopmentAnalysis",
        authors = "Javier Barbero and José Luis Zofío.",
        pages = [
        "Home" => "index.md",
        "Technical Efficiency Models" => Any[
                
                "Radial Models" => "technical/radial.md",
                "Radial Big Data Models" => "technical/radialbigdata.md",
                "Directional Distance Function Models" => "technical/directional.md",
                "Additive Models" => "technical/additive.md",
                "Generalized Distance Function Models" => "technical/generalizeddf.md",
                "Russell Models" => "technical/russell.md",
                "Enhanced Russell Graph Slack Based Measure" => "technical/enhancedrussell.md",
                "Modified Directional Distance Function" => "technical/modifiedddf.md",
                "Hölder Distance Function" => "technical/holder.md",
                "Reverse Directional Distance Function" => "technical/reverseddf.md",
                "Common functions for technical models" => "technical/commontechnical.md"
                ],
        "Economic Efficiency Models" => Any[
                "Cost Models" => "economic/cost.md",
                "Revenue Models" => "economic/revenue.md",
                "Profit Models" => "economic/profit.md",
                "Profitability Models" => "economic/profitability.md",
                "Common functions for economic models" => "economic/commoneconomic.md"
                ],
        "Productivity Change Models" => Any[
                "Malmquist Index" => "productivity/malmquist.md"
                "Common functions for productivity change models" => "productivity/commonproductivity.md"
                ],
        "Statistical Analysis" => Any[
                "Bootstrap Radial DEA Model" => "statistical/radialboot.md",
                "Returns to Scale Test" => "statistical/rtstest.md"
                ],
        "Configuring Optimizer" => "optimizer.md",
        "Bibliography" => "bibliography.md"
        ],
        format = Documenter.HTML(prettyurls = get(ENV, "CI", nothing) == "true")
)

deploydocs(
    repo = "github.com/javierbarbero/DataEnvelopmentAnalysis.jl.git",
)

Software Heritage — Copyright (C) 2015–2025, The Software Heritage developers. License: GNU AGPLv3+.
The source code of Software Heritage itself is available on our development forge.
The source code files archived by Software Heritage are available under their own copyright and licenses.
Terms of use: Archive access, API— Contact— JavaScript license information— Web API

back to top