Posts by user221459 • 67 points
9 posts
-
-1
votes1
answer134
viewsQ: $ git push -u origin main remote: Repository not found. fatal: Repository 'https://github.com/fretagi/pirple-apple.git/' not found
I’m trying to push according to: git remote add origin https://github.com/fretagi/pirple-projects-apple.git git branch -M main git push -u origin main but he gives that mistake: fatal: remote origin…
-
2
votes1
answer102
viewsQ: Place menu items inside the div
I have the following code: .top-content { background-color: #fff; border: 1px solid #e07b39; height: 69px; } .nav-list { display: flex; justify-content: flex-end; list-style: none; } <div…
-
0
votes0
answers219
viewsQ: How to create one box inside the other using div
I have the following html code: .outer-box { width: 300px; height: 250px; margin: 50px auto; background-color: black; } .inner-box { width: 200px; height: 200px; margin: 0 auto; background-color:…
-
0
votes1
answer113
viewsQ: how to color 3 by 2 grid boxes in css
I have the following html code: <div class="wrapper"> <div>1</div> <div>2</div> <div>3</div> <div>4</div> <div>5</div>…
-
1
votes1
answer1062
viewsQ: How to convert a string to Date with the month name in English
I have a df in which the first column dates (13-mai-2019) is as string and I want to convert her to 13-Maio-2019 or 13-5-2019. I used the following code: df['Date'] = pd.to_datetime(df['Date'],…
-
-1
votes3
answers46
viewsA: error in creating subplots
It is already solved, missing insert %matplotlib inline at the top. Thank you
-
0
votes3
answers46
viewsA: error in creating subplots
Look I modified the code this way: fig_2, axes = plt.subplots(2, 2, figsize=(20, 5)) axes[0,0].plot(abril.Date_Time, abril.CPUs_pct) axes[0,1].plot(abril.Date_Time, abril.Mem_pct)…
-
0
votes3
answers46
viewsQ: error in creating subplots
I am trying to create several Graphics using the following procedure: fig_2, axes = plt.subplots(2,2, figsize=(20, 5)) axes[0].plot(abril.Date_Time, abril.CPUs_pct) axes[1].plot(abril.Date_time,…
-
0
votes1
answer422
viewsQ: X-axis customization in matplotlib
Good morning, I have the code:import pandas as pd from matplotlib import pyplot as plt server250_mar19 = pd.read_csv('dbnode2_mar19.csv') plt.plot(server250_mar19.Date, server250_mar19.CPU_pct)…