Posts by Carmen González • 243 points
12 posts
-
0
votes0
answers12
viewsQ: Change xx axis in Python
Good afternoon. I’m trying to create a graph in Python, but I wanted to separate the lines and the dots on the left and right so that you can see these dots and not get too close together. How could…
-
1
votes1
answer59
viewsQ: Fill graph line in Python and change axis numbers to strings
Good afternoon. This is the first time I’ve ever done a 3D graphic in Python, in Anaconda’s Jupyter Notebook. The goal is for the chart to look like this formatting: My code is this:: import numpy…
-
0
votes1
answer105
viewsQ: Adjusting axis values on a Python chart
I’m trying to pull the white squares out of a graph in Python (using a Jupyter Notebook in Anaconda). I would like the xx axis to end at 1.3 and the yy axis to end at 1.2. I tried to adjust it with…
-
2
votes1
answer56
viewsQ: Rounded lines or "Smooth" in Python from an Excel file
I’m trying to make a Python chart on Anaconda’s Jupyter Notebook from an Excel file I created. I put the data and the lines give me peaks in the graph. I wish the lines were more "Smooth" or rounded…
-
1
votes1
answer161
viewsQ: Python log-normal distribution
I’m trying to adjust the log-normal distribution to this data but I don’t know how to find the mean, standard deviation and adjust the Python distribution curve (I’m using Jupyter in Anaconda). I…
-
3
votes1
answer648
viewsQ: Make a histogram with a Gaussian curve in Python
It’s the first time I do a Python histogram, but I’m not getting the same Python histogram I got in Excel. Also, I wanted to put a Gaussian curve and the mean with the uncertainty of it next to the…
-
1
votes1
answer1063
viewsQ: Customize/customize Python chart caption
I’m trying to create a custom caption on my Python chart on a Jupyter Notebook in Anaconda. I don’t want any rectangles around the legend. Instead of the caption appearing as it is in the image,…
-
1
votes0
answers127
viewsQ: Python - How to remove line in the middle of markers and additionally place trend line equation in Python
Good afternoon. I’m trying to create a graph in Python, in a Jupyter Notebook in Anaconda where I’d like to put the trend lines for each of the lines and the linear regression equation. I was able…
-
1
votes1
answer1640
viewsQ: How can I make two graphs in the same Python Plot in Jupyter Notebook?
I’m trying to create charts in Jupyter Notebook in Python for the first time using data from an excel file for my Master’s Thesis, because I don’t want to present the charts in Excel and want to do…
-
3
votes0
answers470
viewsQ: Monte Carlo methods in C++
This is the code I created to calculate in C++ using the Monte Carlo methods, the average distance between the points evenly distributed in a cube. I don’t understand why in the output file…
-
0
votes1
answer506
viewsA: Matlab - how to put an exponent in xlabel
I already found the solution. The code is the same, only this line is changed: xlabel('Inverso do comprimento da corda m^{-1}','FontSize', 16,'Color','k');
matlabanswered Carmen González 243 -
0
votes1
answer506
viewsQ: Matlab - how to put an exponent in xlabel
Good afternoon. I want to put on the xlabel the units of m (-1). f=[40.82,52.63,75.80]; inversoL=[1/0.730,1/0.600,1/0.400]; coeficientes=polyfit(inversoL,f,1)…
matlabasked Carmen González 243