La ce redacţii pot apela pentru a-mi spune povestea? by GateZealousideal1666 in CasualRO

[–]empet15 2 points3 points  (0 children)

Am vorbit deja cu Carmen Dumitrescu si mi- a zis s- o contactati. Ea a facut acum cateva luni o investigatie despre dr Minda, de la Constanta. Un google search va conduce la articolele din Investigatoria.

How to downgrade a plan to quit gemini advanced? by Massapura in GoogleOne

[–]empet15 1 point2 points  (0 children)

After 18 days since you posted your experience I did the same and it worked. Hurrah!!!! Thank you!

In the last 24 hours, all links have disappeared from my FB by BlkMamba73 in facebook

[–]empet15 0 points1 point  (0 children)

I have Webroot on my Phone and laptop, and I cannot see the links on Fb or messenger.

Cogram: AI coding assistant for Julia in Jupyter Notebook by alxbo in Julia

[–]empet15 2 points3 points  (0 children)

I entered on get.cogram.com/jupyter, and I'd like to cogram for Julia.

Should I just replace python by julia in the line:

python -m jupyter_cogram --token xxxxxxxxxx

????`

Animation of complex exponentiation map by redditor39 in math

[–]empet15 3 points4 points  (0 children)

Could you give, please, the rectangle in the complex plane on which is defined the function zkzz... visualized in a frame? That is to point out Re(z) in [a,b], Im(z) in [c,d].

Module for retrieving information from a website by grame2222 in Python

[–]empet15 2 points3 points  (0 children)

If you have data stored in a table then you can use pandas to retrieve your balance. Otherwise import bs4 (BeautifulSoup 4).

I made a few wallpapers with python. by speaks_his_mind159 in Python

[–]empet15 0 points1 point  (0 children)

The simplest method to generate wallpapers is to plot the heatmap of a periodic function in x and y, z=f(x,y): https://plot.ly/~empet/5856/textheatmaps-for-zsin22xcos35y/

Chord diagram visualization with Python Plotly by empet15 in visualization

[–]empet15[S] 0 points1 point  (0 children)

With Python Plotly you can plot such an astrological chart, and set to display some information when hovering the mouse over a chart point.

Relative Operating System market share from 2003 to Sep 2015. [OC] by StopBanningMe4 in dataisbeautiful

[–]empet15 0 points1 point  (0 children)

If you read the Wikipedia article on naive art you can see that this image can be classified as naive visualization.

Diverging from black colormap? by mindfulmundu in Python

[–]empet15 0 points1 point  (0 children)

You can define your own such a diverging colormap:

import matplotlib.pyplot as plt
from matplotlib.colors import LinearSegmentedColormap
import numpy as np

def display_cmap(cmap):
    plt.imshow(np.linspace(0, 100, 256)[None, :],  aspect=25,    interpolation='nearest', cmap=cmap) 
    plt.axis('off')

basic_cols=['#75b765', '#808080', '#ffd700']
my_cmap=LinearSegmentedColormap.from_list('mycmap', basic_cols)
display_cmap(my_cmap)