On Mon, Apr 3, 2023 at 12:41 PM Pamphile Roy <roy.pamphile(a)gmail.com> wrote:
> Hi everyone,
>
> I would like to propose to retire (read only) the user mailing list:
> scipy-user(a)python.org
>
> We have had a few spam events, there is little activity with some user
> questions, promotion of some packages, and other general questions, but not
> much that would justify maintaining the list I would say.
> Instead I would propose to migrate this flux of messages …
[View More]to our Slack and
> Discord channels or even to the Scientific Python discuss server. As for
> general questions, there is always StackOverflow. i.e. we still have many
> options and reducing the scope a bit will, IMHO, help everyone keep track
> of things.
>
+1 from me - I think it's time to do this, scipy-user had a good run.
Cheers,
Ralf
[View Less]
Chhavi Garg
by realchhavigarg@gmail.com
April 3, 2023
April 3, 2023
Delhi is where I am from and based. I'm available for professional companion, domme & switch including dinner dates, overnights and you can fly me to you.
https://www.chhavigarg.com
(Sent with wrong subject earlier due to user error. Resending. Apologies
for the noise)
--
I am a bit biased of course, but my online book could also meet your needs.
Process Improvement using Data. https://learnche.org/pid/
Chapter 4 is about Regression, chapter 2 on fundamental stats, and chapter
5 on designed experiments (including a full online course on Coursera).
It's been a free, Creative Commons licensed resource since 2010, and used
by quite a number of industrial companies and …
[View More]universities daily.
I'm working on converting the R code to Python, so both are available side
by side. The repo is available on GitHub if anyone is interested in helping
speed that up ;) https://github.com/kgdunn/pid-book
Kevin
[View Less]
Hi,
I have written a script to try to combine five images into a three channels
RGB images<http://dip4fish.blogspot.com/2011/05/trying-to-combine-mfish-images-into-rg…>
.
The resulting RGB image looks like a grey scale image instead of a color
one.
I have three np.array Rnorm, Gnorm, Bnorm which are copied into a rgb array:
*rgb = np.zeros((shape[0],shape[1],3),dtype=float)
mxr=np.max(R)
mxg=np.max(G)
mxb=np.max(B)
Rnorm=np.uint8((255*(R/mxr)))Gnorm=np.uint8((255*(R/mxg)))Bnorm=np.…
[View More]uint8((255*(R/mxb)))#copy each RGB component in an RGB array
rgb[:,:,0]=Rnorm
rgb[:,:,1]=Gnorm
rgb[:,:,2]=Bnorm*
*pylab.subplot(224, aspect='equal',frameon=False, xticks=[], yticks=[])
pylab.imshow(rgb)
pylab.show()*
Any advice?
Thank you
Jean-Patrick
[View Less]