Skip to main content
3 votes
1 answer
33 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
-9 votes
0 answers
58 views

I've been experiencing colourful artifacts on browsers and plotting software for a few years but exclusively on Windows 7 both on Intel and AMD GPUs. Why is it happening and how do I fix it? Here are ...
Sip_'s user avatar
  • 21
1 vote
1 answer
51 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
  • 197
Tooling
0 votes
7 replies
136 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
39 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
90 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
118 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
39 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
160 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
2 votes
2 answers
116 views

I am using the stR package to decompose an msts time series. When I call: library(stR) library(forecast) msts_spain <- msts( spain_daily$Daily_Load, seasonal.periods = c(7, 365.25), start = ...
Saïd Maanan's user avatar
0 votes
1 answer
118 views

I am trying to create a forest plot to compare estimates of different models. Tho goal is to plot all the estimates of the same predictor for the different models so they are comparable. For this I ...
Linus's user avatar
  • 355
0 votes
0 answers
33 views

I need to animate the movement of a cylinder in space. I have the x, y, and z coordinates as a function of time in a CSV file. Since it's very large, I can't create the animation manually. Is there a ...
Azerty Gray's user avatar
0 votes
0 answers
85 views

I have a mixed model that includes three different variables: Treatment, Stimulation, and DRG, as well as a random effect with DRG nested under a group ((1|Group/DRG)). I am looking to assess how each ...
Emily Tran's user avatar
1 vote
1 answer
76 views

I'm attempting to create a coefficient plot for multiple linear models using ggplot2 in R, but I'm facing an issue with overlapping points and error bars when displaying the estimates. I've written a ...
Linus's user avatar
  • 355
0 votes
1 answer
103 views

I'm getting an odd problem where I've attempted to plot a scatter graph and fit a quadratic regression line to it. I used stat_smooth() to make the line, and stat_regline_equation() to print the ...
CJG's user avatar
  • 3

15 30 50 per page
1
2 3 4 5
2521