Search found 2638 matches

by jonathon
Sat May 11, 2024 9:39 am
Forum: General
Topic: Vectorized figures
Replies: 4
Views: 171

Re: Vectorized figures

OK, thanks for the info. i'll spend some time investigating.

i might come back to you to ask you to try some things, if that would be ok?

with thanks

jonathon
by jonathon
Fri May 10, 2024 11:17 pm
Forum: General
Topic: Vectorized figures
Replies: 4
Views: 171

Re: Vectorized figures

hi,

could you take a look here: https://github.com/jamovi/jamovi/issues/1483 and let me know if your experience is similar?

also, could you provide a .omv file (you may need to zip it up first), containing a plot which doesn't export correctly.

with thanks
by jonathon
Wed May 08, 2024 4:56 am
Forum: Help
Topic: Filters running slowly
Replies: 3
Views: 99

Re: Filters running slowly

yes, i think the slowdown increases exponentially with the number of filters.

jonathon
by jonathon
Wed May 08, 2024 1:01 am
Forum: Help
Topic: Filters running slowly
Replies: 3
Views: 99

Re: Filters running slowly

hi,

yes, you're right. there is a performance issue i've been meaning to take a look at.

https://github.com/jamovi/jamovi/issues/1453

jonathon
by jonathon
Wed May 08, 2024 12:58 am
Forum: Module development
Topic: additional ggplot2 stat layer
Replies: 1
Views: 206

Re: additional ggplot2 stat layer

i think this will come down to how GGally searches for what corresponds to stat = "cross" ... i assume you've begun with running this code in an interactive R session (and had it work) and then you've moved to incorporate it into a jamovi module. i'm wondering if, when running this code in...
by jonathon
Wed May 08, 2024 12:45 am
Forum: Module development
Topic: Magick++
Replies: 1
Views: 62

Re: Magick++

hi, yes, packages that rely on OS libraries are a bit tricky with the flatpak. the flatpak is designed to isolate the program from the host operating system, so installing libmagick++-dev into the host won't help unfortunately. sometimes R packages provide an alternative, so V8 for example allows yo...
by jonathon
Tue May 07, 2024 12:35 am
Forum: General
Topic: Syntax Mode Disabling Every Time Jamovi is Closed
Replies: 1
Views: 1047

Re: Syntax Mode Disabling Every Time Jamovi is Closed

hi,

you're right, it does need to be enabled each time jamovi is started. we should consider making it a persistent setting.

cheers
by jonathon
Fri May 03, 2024 10:17 pm
Forum: Help
Topic: extracting part of a text variable
Replies: 3
Views: 113

Re: extracting part of a text variable

concatenating variables couldn't be simpler:
Screenshot 2024-05-04 at 08.16.25.png
Screenshot 2024-05-04 at 08.16.25.png (157.49 KiB) Viewed 105 times
by jonathon
Fri May 03, 2024 10:15 pm
Forum: Help
Topic: extracting part of a text variable
Replies: 3
Views: 113

Re: extracting part of a text variable

hi, i would extract the hour with the formula: INT(SPLIT(SPLIT(C, ' ', 2), ':', 1)) SPLIT(C, ' ', 2) says split the variable C where ever there are spaces, and give me the 2nd chunk. SPLIT('04/05/23 05:35', ' ', 1) gives '04/05/23' SPLIT('04/05/23 05:35', ' ', 2) gives '05:35' then i would take that...
by jonathon
Wed May 01, 2024 12:44 am
Forum: Help
Topic: cairo_ps error
Replies: 7
Views: 593

Re: cairo_ps error

The problem was that my .omv file was located in a folder that was nested inside another folder named in Persian (a different language).
thanks for letting us know. i've created an issue and will look at fixing this soon.

https://github.com/jamovi/jamovi/issues/1493

with thanks