Home
last modified time | relevance | path

Searched refs:ungroup (Results 1 – 25 of 1537) sorted by relevance

12345678910>>...62

/dports/science/pulseview/pulseview-0.4.2/pv/views/trace/
H A Dtracegroup.cpp140 QAction *const ungroup = new QAction(tr("Ungroup"), this); in create_header_context_menu() local
141 ungroup->setShortcut(QKeySequence(Qt::CTRL + Qt::Key_U)); in create_header_context_menu()
142 connect(ungroup, SIGNAL(triggered()), this, SLOT(on_ungroup())); in create_header_context_menu()
143 menu->addAction(ungroup); in create_header_context_menu()
164 void TraceGroup::ungroup() in ungroup() function in pv::views::trace::TraceGroup
177 ungroup(); in on_ungroup()
/dports/math/R-cran-dplyr/dplyr/man/
H A Dgroup_by.Rd5 \alias{ungroup}
10 ungroup(x, ...)
18 In \code{ungroup()}, variables to remove from the grouping.}
42 where operations are performed "by group". \code{ungroup()} removes grouping.
53 \item \code{ungroup()}: \Sexpr[stage=render,results=rd]{dplyr:::methods_rd("ungroup")}.
77 # To removing grouping, use ungroup
79 ungroup() \%>\%
H A Drowwise.Rd28 which return a \link{grouped_df}. You can explicitly ungroup with \code{\link[=ungroup]{ungroup()}}
/dports/shells/psh/psh-1.8.1/lib/Psh/Builtins/
H A DIf.pm24 ($success)= Psh::evl(Psh::Parser::ungroup($cond));
28 return Psh::evl(Psh::Parser::ungroup(shift @words));
34 return Psh::evl(Psh::Parser::ungroup(shift @words));
/dports/audio/denemo/denemo-2.0.6/actions/menus/ObjectMenu/NotesRests/RestEntry/
H A DMultiMeasureRests.scm25 (define (ungroup)
92 …st (cons (_ "Help") 'help) (cons (_ "Recalculate") 'recalculate) (cons (_ "Un-group") 'ungroup)))))
98 ((equal? choice 'ungroup)
99 (ungroup))))))))
/dports/math/R-cran-dplyr/dplyr/tests/testthat/_snaps/
H A Dgroup-by.md15 # group_by() and ungroup() give meaningful error messages
26 df %>% ungroup(x)
39 df %>% group_by(x, y) %>% ungroup(z)
/dports/databases/arrow/apache-arrow-6.0.1/r/tests/testthat/
H A Dtest-dplyr-group-by.R62 ungroup() %>%
76 (function(x) if (inherits(x, "tbl_df")) ungroup(x) else x) %>%
154 ungroup() %>%
/dports/sysutils/ansible/ansible-4.7.0/ansible_collections/dellemc/os9/roles/os9_lag/templates/
H A Dos9_lag.j237 lacp ungroup member-independent vlt
39 no lacp ungroup member-independent vlt
48 no lacp ungroup member-independent port-channel {{ port.port_channel }}
50 lacp ungroup member-independent port-channel {{ port.port_channel }}
/dports/devel/hs-git-annex/git-annex-8.20210903/doc/
H A Dgit-annex-ungroup.mdwn3 git-annex ungroup - remove a repository from a group
7 git annex ungroup `repository groupname`
/dports/textproc/R-cran-openxlsx/openxlsx/man/
H A DungroupColumns.Rd14 \item{cols}{Indices of columns to ungroup}
23 \code{\link[=ungroupRows]{ungroupRows()}} To ungroup rows
/dports/audio/praat/praat-6.2.03/test/fon/
H A DupdateScrollBar_GUI_.praat9 # Praat should ungroup the first window, because it no longer
11 # For the same reason, Praat should ungroup also the other Sound window.
/dports/graphics/digikam/digikam-7.4.0/core/libs/fileactionmanager/
H A Dfileactionmngr.h91 void ungroup(const ItemInfo& info);
92 void ungroup(const QList<ItemInfo>& infos);
H A Dfileactionmngr.cpp220 void FileActionMngr::ungroup(const ItemInfo& info) in ungroup() function in Digikam::FileActionMngr
222 ungroup(QList<ItemInfo>() << info); in ungroup()
225 void FileActionMngr::ungroup(const QList<ItemInfo>& infos) in ungroup() function in Digikam::FileActionMngr
/dports/cad/kicad-devel/kicad-a17a58203b33e08b966075833b177dad5740c236/pcbnew/tools/
H A Dgroup_tool.cpp46 Add( PCB_ACTIONS::ungroup ); in GROUP_CONTEXT_MENU()
70 Enable( PCB_ACTIONS::ungroup.GetUIId(), legalOps.ungroup ); in update()
435 Go( &GROUP_TOOL::Ungroup, PCB_ACTIONS::ungroup.MakeEvent() ); in setTransitions()
/dports/math/R-cran-dplyr/dplyr/inst/doc/
H A Dgrouping.Rmd22 * How to group, inspect, and ungroup with `group_by()` and friends.
118 To remove all grouping variables, use `ungroup()`:
122 ungroup() %>%
126 You can also choose to selectively ungroup by listing the variables you want to remove:
130 ungroup(sex) %>%
186 If you don't want the grouping variables, you'll have to first `ungroup()`. (This design is possibl…
H A Dgrouping.R55 ungroup() %>%
60 ungroup(sex) %>%
/dports/math/R-cran-dplyr/dplyr/vignettes/
H A Dgrouping.Rmd22 * How to group, inspect, and ungroup with `group_by()` and friends.
118 To remove all grouping variables, use `ungroup()`:
122 ungroup() %>%
126 You can also choose to selectively ungroup by listing the variables you want to remove:
130 ungroup(sex) %>%
186 If you don't want the grouping variables, you'll have to first `ungroup()`. (This design is possibl…
/dports/java/jgraph/jgraph-java-5.13.0.4/examples/org/jgraph/example/
H A DGraphEd.java93 protected Action undo, redo, remove, group, ungroup, tofront, toback, cut, field in GraphEd
365 public void ungroup(Object[] cells) { in ungroup() method in GraphEd
366 graph.getGraphLayoutCache().ungroup(cells); in ungroup()
428 ungroup.setEnabled(enabled); in valueChanged()
1026 ungroup = new AbstractAction("", ungroupIcon) { in createToolBar()
1028 ungroup(graph.getSelectionCells()); in createToolBar()
1031 ungroup.setEnabled(false); in createToolBar()
1032 toolbar.add(ungroup); in createToolBar()
/dports/math/R-cran-dplyr/dplyr/R/
H A Dgroup-by.r97 ungroup <- function(x, ...) { function
197 mutate_cols(ungroup(.data), !!!vars, caller_env = caller_env),
/dports/math/R-cran-dplyr/dplyr/tests/testthat/
H A Dtest-empty-groups.R16 ungroup(count(filter(df, f == 1))),
26 ungroup(count(slice(df, 1))),
/dports/misc/cheat/cheat-4.2.2/vendor/github.com/alecthomas/chroma/chroma-0.9.1/lexers/testdata/
H A Dr.actual5 ungroup() %>%
/dports/www/gitlab-workhorse/gitlab-foss-0a901d60f8ae4a60c04ae82e6e9c3a03e9321417/workhorse/vendor/github.com/alecthomas/chroma/lexers/testdata/
H A Dr.actual5 ungroup() %>%
/dports/devel/gh/cli-2.4.0/vendor/github.com/alecthomas/chroma/lexers/testdata/
H A Dr.actual5 ungroup() %>%
/dports/sysutils/chezmoi/chezmoi-2.9.3/vendor/github.com/alecthomas/chroma/lexers/testdata/
H A Dr.actual5 ungroup() %>%
/dports/www/gohugo/hugo-0.91.2/vendor/github.com/alecthomas/chroma/lexers/testdata/
H A Dr.actual5 ungroup() %>%

12345678910>>...62