Skip to main content
Advice
1 vote
1 replies
39 views

In R it is generally convenient to use a function like "pretty" when deciding intervals to plot in a graph that are useful and readable to the general audience. In R if you are producing a ...
AdamO's user avatar
  • 5,123
0 votes
0 answers
22 views

In GeoGebra is there a method to plot only a portion of a curve defined by an equation? In other words if I want to plot only the first quadrant of the equation of a circle x^2+y^2=1, is there a way ...
gciriani's user avatar
  • 689
Advice
0 votes
0 replies
37 views

I have 8 files all 13 minutes long for measuring sound intensity. I need to calculate the average every 5 seconds for each file, any idea how to do this in a fast or efficient manner? I have no idea ...
Philip McKeon's user avatar
Best practices
0 votes
1 replies
59 views

I want to plot a 3D curve showing the X-Y grid in polar coordinates. Here's a sketch and my script that generated it: from math import cos, cosh, floor, pi, sin, sinh import matplotlib.pyplot as ...
troy's user avatar
  • 51
2 votes
1 answer
48 views

I am trying to create a forest plot for some meta-analyses I am conducting. I have been able to create the forest plot but I have been unable to use xlim() to adjust the x-axis scale, nor have I been ...
StatsWombat's user avatar
Tooling
0 votes
0 replies
32 views

I want to create a 3d plot that only shows data and annotations in the xy, xz, and yz planes. Especially, annotations should be fixed to these planes as well, and should not rotate out of them when ...
user2224350's user avatar
  • 2,336
3 votes
0 answers
101 views

For the context, I want to represent spatial-temporal evolution of a heatwave event. In this example, a heatwave is defined when the daily temperature is higher than the temperature threshold and the ...
Bastounator's user avatar
4 votes
1 answer
50 views

Using the rotl package, I have created a phylogeny plot based on a list of species in a dataframe. When I go to plot the phylogeny, the species name is shown (e.g. Anas platyrhynchos), but with an ...
Rach B. 's user avatar
1 vote
1 answer
56 views

I am trying to plot some data from a Markov Chain Monte Carlo run, using getDist, which (I assume) uses matplotlib under the hood for plotting. There is no error message or anything, and it produces a ...
kalle's user avatar
  • 207
Tooling
0 votes
7 replies
139 views

I want to visualize a 3D data structure in a 3D table or spreadsheet in R. Much like a 2D spreadsheet, for example in Excel, but with three-dimensional cells. Here is a rough sketch of what I want to ...
Ben's user avatar
  • 817
1 vote
1 answer
40 views

To export a base R plot with officer, you have to wrap its code into plt_instr: doc <- read_docx() p <- plot_instr( code = { barplot(1:5, col = 2:6) } ) doc <- body_add_plot(...
robertspierre's user avatar
-6 votes
1 answer
92 views

Exporting a base R plot into a Word document using the officer package requires wrapping the plot code with the plot_instr function: library(officer) p <- plot_instr( code = { barplot(1:5, ...
robertspierre's user avatar
4 votes
1 answer
121 views

In Matplolib, it is possible to change the direction of the tick of 2D plots with tick_params parameters import matplotlib.pyplot as plt from mpl_toolkits.mplot3d import Axes3D import numpy as np fig ...
Thomas Bernat's user avatar
Tooling
0 votes
1 replies
45 views

I have a C++ data processing program. I want to view a live plot of a stream of data that is being produced in the program, for debugging purposes. I'm not looking for a production-ready plotting ...
hburd's user avatar
  • 320
1 vote
2 answers
164 views

I am trying to create a series of plots using ggplot2 in R, and I want to customize the labels in the facet nested plots, particularly to include subscripts for the ICC labels. Below is my attempt, ...
Linus's user avatar
  • 355

15 30 50 per page
1
2 3 4 5
2521