You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- `data_dict::Dict`: Data dictionary (see [`makeDataDict`](@ref) for the canonical description).
410
410
- `quantity::Symbol`: Target quantity. It can be any of the quantities valid for [`scatterQty`](@ref).
411
-
- `grid::CircularGrid`: Circular grid.
411
+
- `grid::LinearGrid`: Linear grid.
412
412
- `norm::Union{Symbol,Nothing}=nothing`: The value of `quantity` in each bin will be divided by the corresponding value of `norm`. It can be any of the quantities valid for [`scatterQty`](@ref). If set to `nothing`, no operation is applied.
413
413
- `y_log::Union{Unitful.Units,Nothing}=nothing`: Target unit for `quantity`, if you want to apply ``\\log_{10}`` to `quantity`. If set to `nothing`, the data is left as is.
414
414
- `flat::Bool=true`: If the profile will be 2D (rings), or 3D (spherical shells).
@@ -738,6 +738,7 @@ Compute a 1D histogram of a given `quantity`.
738
738
- `data_dict::Dict`: Data dictionary (see [`makeDataDict`](@ref) for the canonical description).
739
739
- `quantity::Symbol`: Target quantity. It can be any of the quantities valid for [`scatterQty`](@ref).
740
740
- `grid::LinearGrid`: Linear grid.
741
+
- `log::Bool=false`: If the histogram bins will be logarithmic.
741
742
- `norm::Int=0`: Number of counts that will be use to normalize the histogram. If left as 0, the histogram will be normalize with the maximum bin count.
742
743
- `filter_function::Function=filterNothing`: Filter function to be applied to `data_dict` before any other computation. See the required signature and examples in `./src/analysis/filters.jl`.
@@ -863,7 +864,7 @@ Compute a 1D histogram of a given `quantity`.
863
864
- `data_dict::Dict`: Data dictionary (see [`makeDataDict`](@ref) for the canonical description).
864
865
- `quantity::Symbol`: Target quantity. It can be any of the quantities valid for [`scatterQty`](@ref).
865
866
- `n_bins::Int`: Number of bins.
866
-
- `log::Bool`: If the histogram bins will be logarithmic.
867
+
- `log::Bool=false`: If the histogram bins will be logarithmic.
867
868
- `norm::Int=0`: Number of count that will be use to normalize the histogram. If left as 0, the histogram will be normalize with the maximum bin count.
868
869
- `filter_function::Function=filterNothing`: Filter function to be applied to `data_dict` before any other computation. See the required signature and examples in `./src/analysis/filters.jl`.
869
870
@@ -877,8 +878,8 @@ Compute a 1D histogram of a given `quantity`.
- `data_dict::Dict`: Data dictionary (see [`makeDataDict`](@ref) for the canonical description).
3229
3230
- `component::Symbol`: Target component. It can only be one of the elements of [`COMPONENTS`](@ref) with cell/partcile type :gas.
3230
-
- `grid::CircularGrid`: Circular grid.
3231
+
- `grid::LinearGrid`: Linear grid.
3231
3232
- `filter_function::Function=filterNothing`: Filter function to be applied to `data_dict` before any other computation. See the required signature and examples in `./src/analysis/filters.jl`.
0 commit comments