Skip to content

Commit

Permalink
inti 0.6.1
Browse files Browse the repository at this point in the history
  • Loading branch information
Flavio Lozano Isla committed May 30, 2023
1 parent 25fb477 commit de9f6f5
Show file tree
Hide file tree
Showing 70 changed files with 1,205 additions and 164 deletions.
4 changes: 2 additions & 2 deletions DESCRIPTION
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
Package: inti
Type: Package
Version: 0.6.0
Version: 0.6.1
Title: Tools and Statistical Procedures in Plant Science
Description: The 'inti' package is part of the 'inkaverse' project for developing
different procedures and tools used in plant science and experimental designs.
The mean aim of the package is to support researchers during the planning of
experiments and data collection (tarpuy()), data analysis and graphics (yupana())
, and technical writing.
Learn more about the 'inkaverse' project at <https://inkaverse.com/>.
Date: 2023-01-23
Date: 2023-05-30
Authors@R: c(
person("Flavio", "Lozano-Isla", email = "[email protected]", role = c("aut", "cre")
, comment = c(ORCID = "0000-0002-0714-669X")),
Expand Down
9 changes: 5 additions & 4 deletions NEWS.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
# inti 0.6.2

- To improve:
- Include lattice

# inti 0.6.1

- Tarpuy:
Expand All @@ -16,10 +21,6 @@
- gdocs2qmd()
- Word document with different output structure

#> to improve:

- Include lattice

# inti 0.6.0

- Fix for dev dplyr (Thanks @hadley)
Expand Down
8 changes: 4 additions & 4 deletions R/gdoc2qmd.R
Original file line number Diff line number Diff line change
Expand Up @@ -42,17 +42,17 @@ gdoc2qmd <- function(file
dplyr::filter(!.data$value %in% "# ") %>%
dplyr::mutate(across("value"
, ~ gsub("```Unknown element type at this position: UNSUPPORTED```", "", .))) %>%
head(which(startsWith(.$value, c('#| END', "#| end"))) - 1)
utils::head(which(startsWith(.$value, c('#| END', "#| end"))) - 1)

txtonly <- txt %>%
dplyr::filter(!grepl("\\|", .data$value)) %>%
dplyr::filter(!grepl("#tbl", .data$value)) %>%
dplyr::filter(!grepl("#fig", .data$value))

tt <- txtonly %>%
filter(if_all(everything(), ~ . != "")) %>%
head(1) %>%
deframe() %>%
dplyr::filter(if_all(everything(), ~ . != "")) %>%
utils::head(1) %>%
tibble::deframe() %>%
as.vector()

fig <- txt %>%
Expand Down
2 changes: 1 addition & 1 deletion docs/404.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/LICENSE-text.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/articles/apps.html

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file modified docs/articles/extra/files/fig-01.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 modified docs/articles/extra/files/fig-03.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 modified docs/articles/extra/files/plot_cluster_map.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 modified docs/articles/extra/files/plot_pca_ind.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 modified docs/articles/extra/files/plot_pca_var.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
56 changes: 15 additions & 41 deletions docs/articles/extra/yupana-coding.html

Large diffs are not rendered by default.

Loading

0 comments on commit de9f6f5

Please sign in to comment.