-
Notifications
You must be signed in to change notification settings - Fork 14
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
M farouk b patch 3 #90
base: develop
Are you sure you want to change the base?
Conversation
R/save.R
Outdated
@@ -1,6 +1,6 @@ | |||
#' @rdname plot_carp | |||
#' @export | |||
saveviz <- function(x, ...) { | |||
saveviz <- function(x,frames_number,frame_rate, ...) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think these should be arguments of the saveviz.CARP
and saveviz.CBASS
methods only - not the generic.
R/save.R
Outdated
@@ -1,6 +1,6 @@ | |||
#' @rdname plot_carp | |||
#' @export | |||
saveviz <- function(x, ...) { | |||
saveviz <- function(x,frames_number,frame_rate, ...) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These need to be documented (for the methods) -- see how the other arguments are documented below.
R/save.R
Outdated
@@ -1,6 +1,6 @@ | |||
#' @rdname plot_carp | |||
#' @export | |||
saveviz <- function(x, ...) { | |||
saveviz <- function(x,frames_number,frame_rate, ...) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
These also need default values.
Hi @MFaroukB, as I commented inline, there are some changes re: default values and documentations that should be fixed before we can merge this. They should be minor (I hope!) but feel free to ping me with questions.
|
Yes, I will get them done in a second.
I have just been working on the application and didn't see the reply the
moment it was sent.
…On Mon, Apr 8, 2019, 21:05 Michael Weylandt ***@***.***> wrote:
Hi @MFaroukB <https://github.com/MFaroukB>, as I commented inline, there
are some changes re: default values and documentations that should be fixed
before we can merge this.
They should be minor (I hope!) but feel free to ping me with questions.
- M
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#90 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AvEP3T6ioFtl87fpY_g0h8ACSaEAsxfTks5ve_V8gaJpZM4cjS5R>
.
|
The Only problem is the function animate is not even used in saveviz.CBASS
…On Mon, Apr 8, 2019, 21:37 Mahmoud Badawi ***@***.***> wrote:
Yes, I will get them done in a second.
I have just been working on the application and didn't see the reply the
moment it was sent.
On Mon, Apr 8, 2019, 21:05 Michael Weylandt ***@***.***>
wrote:
> Hi @MFaroukB <https://github.com/MFaroukB>, as I commented inline, there
> are some changes re: default values and documentations that should be fixed
> before we can merge this.
>
> They should be minor (I hope!) but feel free to ping me with questions.
>
> - M
>
> —
> You are receiving this because you were mentioned.
> Reply to this email directly, view it on GitHub
> <#90 (comment)>,
> or mute the thread
> <https://github.com/notifications/unsubscribe-auth/AvEP3T6ioFtl87fpY_g0h8ACSaEAsxfTks5ve_V8gaJpZM4cjS5R>
> .
>
|
I have added 4 commits to my previous patch. I believe it should appear now
for you!
If it didn't, let me know. I will redo it as I did before.
…On Mon, Apr 8, 2019, 21:39 Mahmoud Badawi ***@***.***> wrote:
The Only problem is the function animate is not even used in saveviz.CBASS
On Mon, Apr 8, 2019, 21:37 Mahmoud Badawi ***@***.***> wrote:
> Yes, I will get them done in a second.
>
> I have just been working on the application and didn't see the reply the
> moment it was sent.
>
> On Mon, Apr 8, 2019, 21:05 Michael Weylandt ***@***.***>
> wrote:
>
>> Hi @MFaroukB <https://github.com/MFaroukB>, as I commented inline,
>> there are some changes re: default values and documentations that should be
>> fixed before we can merge this.
>>
>> They should be minor (I hope!) but feel free to ping me with questions.
>>
>> - M
>>
>> —
>> You are receiving this because you were mentioned.
>> Reply to this email directly, view it on GitHub
>> <#90 (comment)>,
>> or mute the thread
>> <https://github.com/notifications/unsubscribe-auth/AvEP3T6ioFtl87fpY_g0h8ACSaEAsxfTks5ve_V8gaJpZM4cjS5R>
>> .
>>
>
|
This looks good for the changes for the gganimate based plots ( |
Adding variables to saveviz function to control fps and number of frames.