julia怎么获取某个包的帮助?

julia怎么获取某个包的帮助?
1、安装完后,整体了解这个包
2、想要了解某个函数的用法–不一定知道这个函数是哪个包的

对于问题1,参考 link
问题2:在 juliahub 上用 symbol search,可以找到所有含这个函数的包

在本地不能查到吗?–安装的包里边不包含用法吗?

R语言的包一旦安装好了,在本地就能查到用法

(如果你说的是问题 2;安装并引入了一些包,希望使用某个函数)

可以用 @which

julia> using Random

julia> @which rand
Base

julia> @which rand!
Random

help?> Random.rand!
  rand!([rng=default_rng()], A, [S=eltype(A)])

  Populate the array A with random values. If S is specified (S can be a type or a collection, cf. rand for details),
  the values are picked randomly from S. This is equivalent to copyto!(A, rand(rng, S, size(A))) but without
  allocating a new array.

  Examples
  ≡≡≡≡≡≡≡≡≡≡

  julia> rng = MersenneTwister(1234);

  julia> rand!(rng, zeros(5))
  5-element Vector{Float64}:
   0.5908446386657102
   0.7667970365022592
   0.5662374165061859
   0.4600853424625171
   0.7940257103317943