remi-quentin_92 3 months | flag | on: Question 2.C.2 correction

Ref 10095235 and linked SKUs do not exist, it should be 10095232 (2 at the end instead of 5)

remi-quentin_92 3 months | flag | on: Ranvar representation

To complete this, ranvar values are bounded to 67108800 (roughly 2^26), enabling ranvar to have a bounded storage need.
Creating a ranvar with values outside of this bound will raise error "Cannot create ranvar with domain [x .. y]".

remi-quentin_92 3 months | flag | on: Rank in reversed order

If you want to rank in decreasing order, you can either:

1 - scan with a minus sign


table T = with
[| as N |]
[| 0 |]
[| 1 |]
[| 2 |]
[| 3 |]

T.rk = rank() scan -T.N

show table "" a1b4 with
T.N
T.rk

2 - Use rankrev function (not documented but similar to rank function)


table T = with
[| as N |]
[| 0 |]
[| 1 |]
[| 2 |]
[| 3 |]
 
// equivalent to rank() scan -T.N
T.rk = rankrev() scan T.N
 
show table "" a1b4 with
T.N
T.rk

remi-quentin_92 3 months | flag | on: deleted post

If you want to rank in decreasing order, you can either:

scan with a minus sign
```envision
table T = with
[| as N |]
[| 0 |]
[| 1 |]
[| 2 |]
[| 3 |]

T.rk = rank() scan -T.N

show table "" a1b4 with
T.N
T.rk
```

or use rankrev function


table T = with
[| as N |]
[| 0 |]
[| 1 |]
[| 2 |]
[| 3 |]

// equivalent to rank() scan -T.N
T.rk = rankrev() scan T.N

show table "" a1b4 with
T.N
T.rk

remi-quentin_92 5 months | flag | on: Limit of exported files

As of July 2024, the limit of exported files is 200.

remi-quentin_92 9 months | flag | on: Langserv correction

Langserv may suggest to use join(T.A, G.S) instead of join(T.A; G.S). One must use a ; and not a coma.

remi-quentin_92 11 months | flag | on: Sliced markdown

"The markdown datatype is restricted to the Scalar table." is not valid anymore. You are now able to have sliced markdown tiles. You must however use Slices table.

remi-quentin_92 Sep 21, 2023 | flag | on: Values of alpha parameter

The value of alpha in this example is very high. I would suggest to use a value close to 0.05 (depending on how much you want your sales are correlated).