Skip to content

Commit

Permalink
Fix figures location
Browse files Browse the repository at this point in the history
  • Loading branch information
PabRod committed Jul 9, 2024
1 parent 2584c8e commit 7e0dac5
Show file tree
Hide file tree
Showing 19 changed files with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
[![fair-software.eu](https://img.shields.io/badge/fair--software.eu-%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8F%20%20%E2%97%8B-yellow)](https://fair-software.eu)
[![Downloads](https://cranlogs.r-pkg.org/badges/kinematics)](https://cran.r-project.org/web/packages/kinematics/index.html)

# Kinematics <img src="inst/img/logo.png" width="120" align="right" />
# Kinematics <img src="man/figures/logo.png" width="120" align="right" />

Allows analyzing time series representing two-dimensional movements.
It accepts a data frame with a time (t), horizontal (x) and vertical (y)
Expand Down Expand Up @@ -140,7 +140,7 @@ that represents five steps of what seems to be a parabolic movement:
plot(mov$x, mov$y, xlab = "x", ylab = "y")
```

![](inst/img/parabolic-plot-1.png)
![](man/figures/parabolic-plot-1.png)

Notice that the insides of the data frame look like below:

Expand Down Expand Up @@ -218,7 +218,7 @@ ggplot(data = mov_analyzed,
scale_color_gradient(low="blue", high="red")
```

![](inst/img/ggplot-1.png)
![](man/figures/ggplot-1.png)

## More realistic examples

Expand Down Expand Up @@ -259,7 +259,7 @@ The data looks like this:
plot(mov$x, mov$y, xlab = "x", ylab = "y", asp = 1)
```

![](inst/img/spiral-plot-1.png)
![](man/figures/spiral-plot-1.png)

And repeating the analysis shown in the previous example, we can
significantly enrich the features we can see on the data. For instance,
Expand All @@ -276,7 +276,7 @@ ggplot(data = mov_analyzed,
scale_color_gradient(low="blue", high="red")
```

![](inst/img/spiral-ggplot-1.png)
![](man/figures/spiral-ggplot-1.png)

### Sampled curve

Expand All @@ -299,7 +299,7 @@ mov <- kinematics::example_mov

plot(mov$x, mov$y, xlab = "x", ylab = "y", asp = 1)
```
![](inst/img/load-data-1.png)
![](man/figures/load-data-1.png)

Using `append_dynamics` we can extract a lot of significant information:
And this is an example of how our analysis enriches the information
Expand All @@ -319,7 +319,7 @@ ggplot(data = mov_analyzed,
scale_color_gradient(low="blue", high="red")
```

![](inst/img/plot-data-1.png)
![](man/figures/plot-data-1.png)

Or a histogram about accelerations:

Expand All @@ -330,7 +330,7 @@ hist(mov_analyzed$aaccel,
main = 'Acceleration histogram')
```

![](inst/img/hist-data-1.png)
![](man/figures/hist-data-1.png)

## Citation

Expand Down
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
File renamed without changes
Binary file added pkgdown/favicon/apple-touch-icon-120x120.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-152x152.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-180x180.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-60x60.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon-76x76.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/apple-touch-icon.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon-16x16.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon-32x32.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added pkgdown/favicon/favicon.ico
Binary file not shown.

0 comments on commit 7e0dac5

Please sign in to comment.