Skip to content

Commit

Permalink
Merge pull request #20 from matthieugomez/patch-1
Browse files Browse the repository at this point in the history
syntax hilighting
  • Loading branch information
droodman authored May 15, 2024
2 parents d3d5bc2 + 4cb9647 commit 2dea63c
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ In all cases, to install, start Julia and type `using Pkg; Pkg.add("WildBootTest

### From Julia

```
```julia
using WildBootTests, CSV, DataFrames, StatsModels, Plots
d = download("https://raw.github.com/vincentarelbundock/Rdatasets/master/csv/sandwich/PetersenCL.csv");
df = CSV.read(d, DataFrame);
Expand All @@ -25,7 +25,7 @@ plot(plotpoints(test)...) # plot confidence curve
```

### From R via fwildclusterboot
```
```R
library(fwildclusterboot)
df <- read.csv("https://raw.github.com/vincentarelbundock/Rdatasets/master/csv/sandwich/PetersenCL.csv")
lm_fit <- lm(y ~ x, data = df)
Expand All @@ -35,7 +35,7 @@ plot(boot_lm)
```

### From via JuliaConnectoR
```
```julia
library(JuliaConnectoR)
startJuliaServer()
WildBootTests <- juliaImport("WildBootTests")
Expand All @@ -51,7 +51,7 @@ plot(plotpoints$X[[1]], plotpoints$p, type="l")
```

### From Python via PyJulia
```
```python
from julia import WildBootTests as wbt
import pandas as pd
import numpy as np
Expand Down

0 comments on commit 2dea63c

Please sign in to comment.