We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
stack
1 parent 372c9fb commit 1dda5aaCopy full SHA for 1dda5aa
Project.toml
@@ -25,7 +25,7 @@ Unicode = "4ec0a83e-493e-50e2-b9ac-8f72acf5a8f5"
25
26
[compat]
27
CategoricalArrays = "0.10.0"
28
-Compat = "3.45, 4.1"
+Compat = "3.46, 4.2"
29
DataAPI = "1.10"
30
InvertedIndices = "1"
31
IteratorInterfaceExtensions = "0.1.1, 1"
src/DataFrames.jl
@@ -78,7 +78,6 @@ export AbstractDataFrame,
78
select!,
79
select,
80
semijoin,
81
- stack,
82
subset,
83
subset!,
84
transform,
@@ -142,6 +141,13 @@ else
142
141
using Compat: ComposedFunction
143
end
144
+if VERSION >= v"1.9.0-DEV.1163"
145
+ import Base: stack
146
+else
147
+ import Compat: stack
148
+ export stack
149
+end
150
+
151
include("other/utils.jl")
152
include("other/index.jl")
153
0 commit comments