Skip to content

Commit

Permalink
Thee must not try to rename the branches of others
Browse files Browse the repository at this point in the history
  • Loading branch information
mirkobunse committed Mar 21, 2022
1 parent 7b9bdb5 commit 792315b
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/src/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ The example plot above is then generated with the following code:
using CriticalDifferenceDiagrams, CSV, DataFrames, Downloads, PGFPlots

# we generate the above example from the underlying data
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv"
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv"
df = CSV.read(Downloads.download(url), DataFrame)

plot = CriticalDifferenceDiagrams.plot(
Expand Down
2 changes: 1 addition & 1 deletion docs/src/python-wrapper.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ import pandas as pd
from wget import download

# we generate the above example from the underlying data
download("https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv")
download("https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv")
df = pd.read_csv("example.csv")

plot = cdd.plot(
Expand Down
2 changes: 1 addition & 1 deletion test/readme.jl
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
@assert success(`lualatex -v`) # make sure the PDF and SVG export will work

@testset "README.jl example" begin
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv"
url = "https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv"
df = CSV.read(Downloads.download(url), DataFrame)

plot = CriticalDifferenceDiagrams.plot(
Expand Down
2 changes: 1 addition & 1 deletion test/runtests.jl
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ using CriticalDifferenceDiagrams, CSV, DataFrames, Downloads, HypothesisTests, P
include("friedman.jl")

# download and read a test data set and remove the intermediate file
function _getdata(url="https://raw.githubusercontent.com/hfawaz/cd-diagram/main/example.csv")
function _getdata(url="https://raw.githubusercontent.com/hfawaz/cd-diagram/master/example.csv")
@info "Downloading $url"
testfile = Downloads.download(url)
df = CSV.read(testfile, DataFrame)
Expand Down

0 comments on commit 792315b

Please sign in to comment.